using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendar { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _interval = 0; public int interval { get { return this._interval; } set { this._interval = value; } } private int _userIdSaved = 0; public int userIdSaved { get { return this._userIdSaved; } set { this._userIdSaved = value; } } private int _userIdUpdated = 0; public int userIdUpdated { get { return this._userIdUpdated; } set { this._userIdUpdated = value; } } private int _sequence = 0; public int sequence { get { return this._sequence; } set { this._sequence = value; } } private int _billingModule = 0; public int billingModule { get { return this._billingModule; } set { this._billingModule = value; } } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get { return this._dateSaved; } set { this._dateSaved = value; } } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get { return this._dateUpdated; } set { this._dateUpdated = value; } } private bool _isDoubleBook = false; public bool isDoubleBook { get { return this._isDoubleBook; } set { this._isDoubleBook = value; } } private bool _isAccessRestricted = false; public bool isAccessRestricted { get { return this._isAccessRestricted; } set { this._isAccessRestricted = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _description = String.Empty; public string description { get { return this._description; } set { this._description = value; } } private string _firstDayOfWeek = String.Empty; public string firstDayOfWeek { get { return this._firstDayOfWeek; } set { this._firstDayOfWeek = value; } } private string _defaultView = String.Empty; public string defaultView { get { return this._defaultView; } set { this._defaultView = value; } } }