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

10 lines
219 B
C#
Raw Permalink Normal View History

2024-04-07 16:54:02 +04:00
namespace SoftwareInstallationDataModels.Models
{
public interface IPackageModel : IId
{
string PackageName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> PackageComponents { get; }
}
}