PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDataModels/Models/ITablewareModel.cs

17 lines
339 B
C#
Raw Normal View History

2023-04-06 14:29:23 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDataModels.Models
{
public interface ITablewareModel : IId
{
2023-04-07 18:58:07 +04:00
int VisitorId { get; }
2023-04-06 14:29:23 +04:00
int OrderId { get; }
2023-04-07 18:58:07 +04:00
string TablewareName { get; }
int Count { get; }
2023-04-06 14:29:23 +04:00
}
}