ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BindingModels/SupplyBindingModel.cs

16 lines
407 B
C#
Raw Normal View History

2024-05-12 14:45:39 +04:00
using SoftwareInstallationDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationContracts.BindingModels
{
public class SupplyBindingModel : ISupplyModel
{
public int ShopId { get; set; }
public int PackageId { get; set; }
public int Count { get; set; }
}
}