using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oRelease { private string _ReleaseNotes = String.Empty; public string ReleaseNotes { get {return this._ReleaseNotes;} set {this._ReleaseNotes = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private DateTime _versionDate = DateTime.MinValue; public DateTime versionDate { get {return this._versionDate;} set {this._versionDate = value;} } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get {return this._dateSaved;} set {this._dateSaved = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private bool _isAvailable = false; public bool isAvailable { get {return this._isAvailable;} set {this._isAvailable = value;} } private string _versionNo = String.Empty; public string versionNo { get {return this._versionNo;} set {this._versionNo = value;} } }