using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendarEventType { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _sequence = 0; public int sequence { get { return this._sequence; } set { this._sequence = value; } } private int _interval = 0; public int interval { get { return this._interval; } set { this._interval = value; } } private int _calendarId = 0; public int calendarId { get { return this._calendarId; } set { this._calendarId = 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 _colour = String.Empty; public string colour { get { return this._colour; } set { this._colour = value; } } private string _icon = String.Empty; public string icon { get { return this._icon; } set { this._icon = value; } } }