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

12 lines
296 B
C#
Raw Normal View History

2018-08-24 10:41:33 +00:00
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; }
}
}