using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendarActiveTime { private string _start = String.Empty; public string start { get {return this._start;} set {this._start = value;} } private string _end = String.Empty; public string end { get {return this._end;} set {this._end = value;} } 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 string _dayOfWeek = String.Empty; public string dayOfWeek { get {return this._dayOfWeek;} set {this._dayOfWeek = value;} } }