using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendars { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private string _CalendarName = String.Empty; public string CalendarName { get {return this._CalendarName;} set {this._CalendarName = value;} } }