2024-05-12 13:03:07 +04:00

17 lines
384 B
C#

using PrecastConcretePlantDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantContracts.BindingModels
{
public class SupplyBindingModel : ISupplyModel
{
public int ShopId { get; set; }
public int ReinforcedId { get; set; }
public int count { get; set; }
}
}