PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenDataModels/Models/ILunchModel.cs
2023-04-07 17:58:07 +03:00

17 lines
373 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenDataModels.Models
{
public interface ILunchModel : IId
{
int VisitorId { get; }
string LunchName { get; }
double Cost { get; }
Dictionary<int, (IProductModel, int)> LunchProducts { get; }
}
}