using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oTariffPlan { private string _notes = String.Empty; public string notes { get {return this._notes;} set {this._notes = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _liableIndicator = 0; public int liableIndicator { get {return this._liableIndicator;} set {this._liableIndicator = value;} } private bool _claimActivated = false; public bool claimActivated { get {return this._claimActivated;} set {this._claimActivated = value;} } private decimal _liablePercent = 0; public decimal liablePercent { get {return this._liablePercent;} set {this._liablePercent = value;} } private decimal _iHPercent = 0; public decimal iHPercent { get {return this._iHPercent;} set {this._iHPercent = value;} } private decimal _oHPercent = 0; public decimal oHPercent { get {return this._oHPercent;} set {this._oHPercent = value;} } private string _code = String.Empty; public string code { get {return this._code;} set {this._code = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } }