12 lines
217 B
C#
12 lines
217 B
C#
|
using System;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public class FoodTableBO
|
|||
|
{
|
|||
|
public int TableID { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|