using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; [Serializable] public class oSurfaceControlParcel { private string _ControlPath = String.Empty; public string ControlPath { get { return this._ControlPath; } set { this._ControlPath = value; } } private string _ID = String.Empty; public string ID { get { return this._ID; } set { this._ID = value; } } private oSurface _SurfaceApp = null; public oSurface SurfaceApp { get { return this._SurfaceApp; } set { this._SurfaceApp = value; } } private int _ParentSurfaceItemId = 0; public int ParentSurfaceItemId { get { return this._ParentSurfaceItemId; } set { this._ParentSurfaceItemId = value; } } private int _ParentSurfaceId = 0; public int ParentSurfaceId { get { return this._ParentSurfaceId; } set { this._ParentSurfaceId = value; } } private int _ChildParentSurfaceItemId = 0; public int ChildParentSurfaceItemId { get { return this._ChildParentSurfaceItemId; } set { this._ChildParentSurfaceItemId = value; } } private int _ChildParentSurfaceId = 0; public int ChildParentSurfaceId { get { return this._ChildParentSurfaceId; } set { this._ChildParentSurfaceId = value; } } private oSurfaceItem _SurfaceAppItem = null; public oSurfaceItem SurfaceAppItem { get { return this._SurfaceAppItem; } set { this._SurfaceAppItem = value; } } private int _SurfaceAppItemId = 0; public int SurfaceAppItemId { get { return this._SurfaceAppItemId; } set { this._SurfaceAppItemId = value; } } private bool _IsChildSurface = false; public bool IsChildSurface { get { return this._IsChildSurface; } set { this._IsChildSurface = value; } } private bool _IsSubChildSurface = false; public bool IsSubChildSurface { get { return this._IsSubChildSurface; } set { this._IsSubChildSurface = value; } } private bool _IsView = false; public bool IsView { get { return this._IsView; } set { this._IsView = value; } } private bool _IsNew = false; public bool IsNew { get { return this._IsNew; } set { this._IsNew = value; } } private bool _IsClone = false; public bool IsClone { get { return this._IsClone; } set { this._IsClone = value; } } }