ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/ISupplyModel.cs

15 lines
303 B
C#
Raw Normal View History

2024-04-07 17:51:29 +04:00
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; }
}
}