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

9 lines
248 B
C#
Raw Normal View History

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