using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSClaimResponseComment { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _claimResponseId = 0; public int claimResponseId { get {return this._claimResponseId;} set {this._claimResponseId = value;} } private int _responseTreatmentId = 0; public int responseTreatmentId { get {return this._responseTreatmentId;} set {this._responseTreatmentId = value;} } private string _comment = String.Empty; public string comment { get {return this._comment;} set {this._comment = value;} } }