using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oSurface { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _surfaceActionId = 0; public int surfaceActionId { get { return this._surfaceActionId; } set { this._surfaceActionId = value; } } private int _columnCount = 0; public int columnCount { get { return this._columnCount; } set { this._columnCount = value; } } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get { return this._dateCreated; } set { this._dateCreated = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private bool _isModal = false; public bool isModal { get { return this._isModal; } set { this._isModal = value; } } private bool _isPublished = false; public bool isPublished { get { return this._isPublished; } set { this._isPublished = value; } } private bool _isDefaultToForm = false; public bool isDefaultToForm { get { return this._isDefaultToForm; } set { this._isDefaultToForm = value; } } private bool _isWizzard = false; public bool isWizzard { get { return this._isWizzard; } set { this._isWizzard = value; } } private bool _isComparable = false; public bool isComparable { get { return this._isComparable; } set { this._isComparable = value; } } private bool _linkUser = false; public bool linkUser { get { return this._linkUser; } set { this._linkUser = value; } } private bool _isCapitalizeInput = false; public bool isCapitalizeInput { get { return this._isCapitalizeInput; } set { this._isCapitalizeInput = value; } } private bool _isLinkedSurface = false; public bool isLinkedSurface { get { return this._isLinkedSurface; } set { this._isLinkedSurface = value; } } private bool _isDisableRequired = false; public bool isDisableRequired { get { return this._isDisableRequired; } set { this._isDisableRequired = value; } } private bool _navAsPills = false; public bool navAsPills { get { return this._navAsPills; } set { this._navAsPills = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _surface = String.Empty; public string surface { get { return this._surface; } set { this._surface = value; } } }