using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSClaimResponseLine { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _responseTreatmentId = 0; public int responseTreatmentId { get {return this._responseTreatmentId;} set {this._responseTreatmentId = value;} } private string _Code = String.Empty; public string Code { get {return this._Code;} set {this._Code = value;} } private string _Description = String.Empty; public string Description { get {return this._Description;} set {this._Description = value;} } }