using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEraClaimItemGeneralComments { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _eraClaimItemId = 0; public int eraClaimItemId { get {return this._eraClaimItemId;} set {this._eraClaimItemId = value;} } private string _generalComments = String.Empty; public string generalComments { get {return this._generalComments;} set {this._generalComments = value;} } }