using System; using System.Collections.Generic; namespace Tanshu.Accounts.Entities { public class Kot { public Kot() { Inventories = new List(); 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 Inventories { get; set; } } }