using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendarModule { 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 _moduleId = 0; public int moduleId { get {return this._moduleId;} set {this._moduleId = value;} } private int _minItems = 0; public int minItems { get {return this._minItems;} set {this._minItems = value;} } private int _maxItems = 0; public int maxItems { get {return this._maxItems;} set {this._maxItems = value;} } private int _sequence = 0; public int sequence { get {return this._sequence;} set {this._sequence = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } }