using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendarUser { 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 _userId = 0; public int userId { get {return this._userId;} set {this._userId = value;} } private bool _isViewOnly = false; public bool isViewOnly { get {return this._isViewOnly;} set {this._isViewOnly = value;} } }