21 lines
635 B
C#
21 lines
635 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public class SaleVoucherBO : VoucherBO
|
|
{
|
|
public int Floor { get; set; }
|
|
public string BillID { get; set; }
|
|
public string TableID { get; set; }
|
|
public Guid WaiterID { get; set; }
|
|
public Guid CustomerID { get; set; }
|
|
public Guid? AdvanceID { get; set; }
|
|
public PaidStatus PaidStatus { get; set; }
|
|
public string VoidReason { get; set; }
|
|
public bool Printed { get; set; }
|
|
public DateTime? Alarm { get; set; }
|
|
public string KotID { get; set; }
|
|
}
|
|
}
|