ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/ISupplyModel.cs
Максим Куклев 757c1ea0f0 загрузил
2024-05-12 14:45:39 +04:00

15 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationDataModels.Models
{
public interface ISupplyModel
{
int ShopId { get; }
int PackageId { get; }
int Count { get; }
}
}