ISEbd-21_Koscheev.M.S.Softw.../SoftwareInstallation/SoftwareInstallationDataModels/IPackageModel.cs

9 lines
248 B
C#

namespace SoftwareInstallationDataModels.Models
{
public interface IPackageModel : IId
{
string PackageName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> PackageComponents { get; }
}
}