using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oAppointments { private int _ID = 0; public int ID { get {return this._ID;} set {this._ID = value;} } private int _PatientID = 0; public int PatientID { get {return this._PatientID;} set {this._PatientID = value;} } private int _CalendarID = 0; public int CalendarID { get {return this._CalendarID;} set {this._CalendarID = value;} } private int _RecurrenceParentID = 0; public int RecurrenceParentID { get {return this._RecurrenceParentID;} set {this._RecurrenceParentID = value;} } private DateTime _Start = DateTime.MinValue; public DateTime Start { get {return this._Start;} set {this._Start = value;} } private DateTime _End = DateTime.MinValue; public DateTime End { get {return this._End;} set {this._End = value;} } private string _Subject = String.Empty; public string Subject { get {return this._Subject;} set {this._Subject = value;} } private string _RecurrenceRule = String.Empty; public string RecurrenceRule { get {return this._RecurrenceRule;} set {this._RecurrenceRule = value;} } private string _Description = String.Empty; public string Description { get {return this._Description;} set {this._Description = value;} } }