using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSClaimModifier { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _treatmentId = 0; public int treatmentId { get {return this._treatmentId;} set {this._treatmentId = value;} } private string _modifierCode = String.Empty; public string modifierCode { get {return this._modifierCode;} set {this._modifierCode = value;} } private string _modifierType = String.Empty; public string modifierType { get {return this._modifierType;} set {this._modifierType = value;} } }