using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCanvas { private string _description = String.Empty; public string description { get {return this._description;} set {this._description = value;} } private string _seoDescription = String.Empty; public string seoDescription { get {return this._seoDescription;} set {this._seoDescription = value;} } private string _seoKeywords = String.Empty; public string seoKeywords { get {return this._seoKeywords;} set {this._seoKeywords = value;} } private string _seoAnalyticsCode = String.Empty; public string seoAnalyticsCode { get {return this._seoAnalyticsCode;} set {this._seoAnalyticsCode = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _parentId = 0; public int parentId { get {return this._parentId;} set {this._parentId = value;} } private int _sequence = 0; public int sequence { get {return this._sequence;} set {this._sequence = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isVisible = false; public bool isVisible { get {return this._isVisible;} set {this._isVisible = value;} } private bool _isExternal = false; public bool isExternal { get {return this._isExternal;} set {this._isExternal = value;} } private bool _isVisibleFooter = false; public bool isVisibleFooter { get {return this._isVisibleFooter;} set {this._isVisibleFooter = value;} } private bool _isRestricted = false; public bool isRestricted { get {return this._isRestricted;} set {this._isRestricted = value;} } private bool _isRightAligned = false; public bool isRightAligned { get {return this._isRightAligned;} set {this._isRightAligned = value;} } private bool _isSummary = false; public bool isSummary { get {return this._isSummary;} set {this._isSummary = value;} } private bool _isDefaultToForm = false; public bool isDefaultToForm { get {return this._isDefaultToForm;} set {this._isDefaultToForm = value;} } private bool _isComposite = false; public bool isComposite { get {return this._isComposite;} set {this._isComposite = value;} } private bool _isAccessible = false; public bool isAccessible { get {return this._isAccessible;} set {this._isAccessible = value;} } private bool _isPanelShown = false; public bool isPanelShown { get {return this._isPanelShown;} set {this._isPanelShown = value;} } private bool _isSecureLandingPage = false; public bool isSecureLandingPage { get {return this._isSecureLandingPage;} set {this._isSecureLandingPage = value;} } private bool _hideNavigation = false; public bool hideNavigation { get {return this._hideNavigation;} set {this._hideNavigation = value;} } private string _display = String.Empty; public string display { get {return this._display;} set {this._display = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _seoTitle = String.Empty; public string seoTitle { get {return this._seoTitle;} set {this._seoTitle = value;} } private string _externalPath = String.Empty; public string externalPath { get {return this._externalPath;} set {this._externalPath = value;} } private string _userTypes = String.Empty; public string userTypes { get {return this._userTypes;} set {this._userTypes = value;} } private string _summary = String.Empty; public string summary { get {return this._summary;} set {this._summary = value;} } private string _customUsers = String.Empty; public string customUsers { get {return this._customUsers;} set {this._customUsers = value;} } }