narsil/Tanshu.Accounts.Contracts/Data Contracts/FoodTable.cs
2018-08-24 16:11:33 +05:30

17 lines
403 B
C#

using System;
namespace Tanshu.Accounts.Entities
{
public class FoodTable
{
public Guid FoodTableID { get; set; }
public string Name { get; set; }
public bool IsActive { get; set; }
public string Location { get; set; }
public string Status { get; set; }
public int SortOrder { get; set; }
public Guid? VoucherID { get; set; }
}
}