using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oDiscomfortDecrease { private int _pkID = 0; public int pkID { get {return this._pkID;} set {this._pkID = value;} } private int _fkComplaintsID = 0; public int fkComplaintsID { get {return this._fkComplaintsID;} set {this._fkComplaintsID = value;} } private string _DiscomfortDecrease = String.Empty; public string DiscomfortDecrease { get {return this._DiscomfortDecrease;} set {this._DiscomfortDecrease = value;} } }