narsil/Tanshu.Accounts.Contracts/Data Contracts/VoucherSettlement.cs
2018-08-24 16:11:33 +05:30

12 lines
296 B
C#

using System;
namespace Tanshu.Accounts.Entities
{
public class VoucherSettlement
{
public Guid VoucherSettlementID { get; set; }
public Voucher Voucher { get; set; }
public SettleOption Settled { get; set; }
public decimal Amount { get; set; }
}
}