23 lines
600 B
C#
23 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public class Kot
|
|
{
|
|
public Kot()
|
|
{
|
|
Inventories = new List<Inventory>();
|
|
Printed = false;
|
|
}
|
|
public Guid KotID { get; set; }
|
|
public Voucher Voucher { get; set; }
|
|
public int Code { private set; get; }
|
|
public FoodTable Table { get; set; }
|
|
public bool Printed { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public User User { get; set; }
|
|
public List<Inventory> Inventories { get; set; }
|
|
}
|
|
}
|