using System; using System.Runtime.Serialization; namespace Tanshu.Accounts.Contracts { public class PaymentBO { public Guid PaymentID { get; set; } public DateTime Date { get; set; } public string Type { get; set; } public Guid CashierID { get; set; } public decimal Amount { get; set; } public string Narration { get; set; } } }