19 lines
529 B
C#
19 lines
529 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using Tanshu.Accounts.Contracts;
|
|||
|
using Tanshu.Accounts.Contracts.Attributes;
|
|||
|
using Tanshu.Accounts.Entities.Auth;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Entities
|
|||
|
{
|
|||
|
public class VoucherSettlement
|
|||
|
{
|
|||
|
public virtual int VoucherSettlementID { get; set; }
|
|||
|
[NotNull]
|
|||
|
public virtual Voucher Voucher { get; set; }
|
|||
|
[NotNull]
|
|||
|
public virtual SettleOption Settled { get; set; }
|
|||
|
[NotNull]
|
|||
|
public virtual decimal Amount { get; set; }
|
|||
|
}
|
|||
|
}
|