17 lines
403 B
C#
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; }
|
|
}
|
|
|
|
}
|