using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oCalendarEventContact { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _calendarEventId = 0; public int calendarEventId { get {return this._calendarEventId;} set {this._calendarEventId = value;} } private int _contactSurfaceItemId = 0; public int contactSurfaceItemId { get {return this._contactSurfaceItemId;} set {this._contactSurfaceItemId = value;} } private bool _isIncluded = false; public bool isIncluded { get {return this._isIncluded;} set {this._isIncluded = value;} } private string _recipientName = String.Empty; public string recipientName { get {return this._recipientName;} set {this._recipientName = value;} } private string _recipientNumber = String.Empty; public string recipientNumber { get {return this._recipientNumber;} set {this._recipientNumber = value;} } }