narsil/Tanshu.Accounts.Contracts/Data Contracts/FoodTable.cs

17 lines
403 B
C#
Raw Normal View History

2018-08-24 10:41:33 +00:00
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; }
}
}