using System; using System.Runtime.Serialization; namespace Tanshu.Accounts.Contracts { public class VoucherBO { public Guid VoucherID { get; set; } public int Code { get; set; } public DateTime? Date { get; set; } public string Narration { get; set; } public Guid UserID { get; set; } public DateTime CreationDate { get; set; } public DateTime LastEditDate { get; set; } } }