using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMSEraJournal { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _eraId = 0; public int eraId { get {return this._eraId;} set {this._eraId = value;} } private DateTime _journalDate = DateTime.MinValue; public DateTime journalDate { get {return this._journalDate;} set {this._journalDate = value;} } private decimal _journalAmount = 0; public decimal journalAmount { get {return this._journalAmount;} set {this._journalAmount = value;} } private string _journalDescription = String.Empty; public string journalDescription { get {return this._journalDescription;} set {this._journalDescription = value;} } }