ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BindingModels/SupplyBindingModel.cs

11 lines
265 B
C#
Raw Normal View History

2024-03-15 19:52:21 +04:00
using PizzeriaDataModels.Models;
namespace PizzeriaContracts.BindingModels
{
public class SupplyBindingModel : ISupplyModel
{
public int ShopId { get; set; }
public int SushiId { get; set; }
public int Count { get; set; }
}
}