21 lines
454 B
C#
21 lines
454 B
C#
|
using CanteenDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CanteenContracts.BindingModels
|
|||
|
{
|
|||
|
public class TablewareBindingModel : ITablewareModel
|
|||
|
{
|
|||
|
public string TablewareName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int ClientId { get; set; }
|
|||
|
|
|||
|
public int OrderId { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|