using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendarEvent { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _calendarId = 0; public int calendarId { get {return this._calendarId;} set {this._calendarId = value;} } private int _calendarEventTypeId = 0; public int calendarEventTypeId { get {return this._calendarEventTypeId;} set {this._calendarEventTypeId = value;} } private int _recurrenceParentId = 0; public int recurrenceParentId { get {return this._recurrenceParentId;} set {this._recurrenceParentId = value;} } private int _emailReminderMin = 0; public int emailReminderMin { get {return this._emailReminderMin;} set {this._emailReminderMin = value;} } private int _calendarRoomId = 0; public int calendarRoomId { get {return this._calendarRoomId;} set {this._calendarRoomId = 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 _customerId = 0; public int customerId { get {return this._customerId;} set {this._customerId = value;} } private int _statusId = 0; public int statusId { get {return this._statusId;} set {this._statusId = 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 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 _isEmailReminder = false; public bool isEmailReminder { get {return this._isEmailReminder;} set {this._isEmailReminder = value;} } private bool _isEmailReminderSent = false; public bool isEmailReminderSent { get {return this._isEmailReminderSent;} set {this._isEmailReminderSent = value;} } private bool _isBilled = false; public bool isBilled { get {return this._isBilled;} set {this._isBilled = value;} } private bool _isNewContact = false; public bool isNewContact { get {return this._isNewContact;} set {this._isNewContact = value;} } private string _subject = String.Empty; public string subject { get {return this._subject;} set {this._subject = value;} } private string _users = String.Empty; public string users { get {return this._users;} set {this._users = value;} } private string _recurrenceRule = String.Empty; public string recurrenceRule { get {return this._recurrenceRule;} set {this._recurrenceRule = value;} } private string _calendarRoomOther = String.Empty; public string calendarRoomOther { get {return this._calendarRoomOther;} set {this._calendarRoomOther = value;} } private string _newContactName = String.Empty; public string newContactName { get {return this._newContactName;} set {this._newContactName = value;} } private string _newContactSurname = String.Empty; public string newContactSurname { get {return this._newContactSurname;} set {this._newContactSurname = value;} } private string _newContactTel = String.Empty; public string newContactTel { get {return this._newContactTel;} set {this._newContactTel = value;} } private string _newContactEmail = String.Empty; public string newContactEmail { get {return this._newContactEmail;} set {this._newContactEmail = value;} } private string _filterField = String.Empty; public string filterField { get {return this._filterField;} set {this._filterField = value;} } private string _filterValue = String.Empty; public string filterValue { get {return this._filterValue;} set {this._filterValue = value;} } }