using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class ovEventHistory { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _contactSurfaceItemId = 0; public int contactSurfaceItemId { get {return this._contactSurfaceItemId;} set {this._contactSurfaceItemId = value;} } private DateTime _startDateTime = DateTime.MinValue; public DateTime startDateTime { get {return this._startDateTime;} set {this._startDateTime = value;} } private DateTime _endDateTime = DateTime.MinValue; public DateTime endDateTime { get {return this._endDateTime;} set {this._endDateTime = value;} } private bool _isIncluded = false; public bool isIncluded { get {return this._isIncluded;} set {this._isIncluded = value;} } private string _eventType = String.Empty; public string eventType { get {return this._eventType;} set {this._eventType = value;} } private string _subject = String.Empty; public string subject { get {return this._subject;} set {this._subject = value;} } private string _eventStatus = String.Empty; public string eventStatus { get {return this._eventStatus;} set {this._eventStatus = value;} } }