PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryContracts/BindingModels/SupplyBindingModel.cs

17 lines
396 B
C#

using GarmentFactoryDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryContracts.BindingModels
{
public class SupplyBindingModel : ISupplyModel
{
public int ShopId { get; set; }
public int TextileId { get; set; }
public int Count { get; set; }
}
}