ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryContracts/BindingModels/SupplyBindingModel.cs
2024-02-29 23:33:00 +04:00

17 lines
386 B
C#

using ConfectioneryDataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.BindingModels
{
public class SupplyBindingModel : ISupplyModel
{
public int ShopId { get; set; }
public int PastryId { get; set; }
public int Count { get; set; }
}
}