12 lines
296 B
C#
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; }
|
|
}
|
|
} |