narsil/Tanshu.Accounts.Contracts/Data Contracts/PaymentBO.cs

17 lines
402 B
C#

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; }
}
}