using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEraClaimItemAccount { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _accountId = 0; public int accountId { get {return this._accountId;} set {this._accountId = value;} } private int _manualProcessUserId = 0; public int manualProcessUserId { get {return this._manualProcessUserId;} set {this._manualProcessUserId = value;} } private int _manualAllocateUserId = 0; public int manualAllocateUserId { get {return this._manualAllocateUserId;} set {this._manualAllocateUserId = value;} } private DateTime _originalProcessDate = DateTime.MinValue; public DateTime originalProcessDate { get {return this._originalProcessDate;} set {this._originalProcessDate = value;} } private DateTime _manualProcessDate = DateTime.MinValue; public DateTime manualProcessDate { get {return this._manualProcessDate;} set {this._manualProcessDate = value;} } private DateTime _manualAllocateDate = DateTime.MinValue; public DateTime manualAllocateDate { get {return this._manualAllocateDate;} set {this._manualAllocateDate = value;} } private bool _manualProcessed = false; public bool manualProcessed { get {return this._manualProcessed;} set {this._manualProcessed = value;} } private bool _manualAllocated = false; public bool manualAllocated { get {return this._manualAllocated;} set {this._manualAllocated = value;} } private bool _rejected = false; public bool rejected { get {return this._rejected;} set {this._rejected = value;} } private bool _deleted = false; public bool deleted { get {return this._deleted;} set {this._deleted = value;} } private string _eraClaimItemId = String.Empty; public string eraClaimItemId { get {return this._eraClaimItemId;} set {this._eraClaimItemId = value;} } }