17 lines
399 B
C#
17 lines
399 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CanteenContracts.BindingModels
|
|||
|
{
|
|||
|
public class OrderTablewareBindingModel
|
|||
|
{
|
|||
|
public int OrderId { get; set; }
|
|||
|
public int TablewareId { get; set; }
|
|||
|
public int CountTablewares { get; set; }
|
|||
|
public int VisitorId { get; set; }
|
|||
|
}
|
|||
|
}
|