11 lines
250 B
C#
11 lines
250 B
C#
namespace SoftwareInstallationDataModels.Models
|
|
{
|
|
public interface IPackageModel : IId
|
|
{
|
|
string PackageName { get; }
|
|
|
|
double Price { get; }
|
|
|
|
Dictionary<int, (IComponentModel, int)> PackageComponents { get; }
|
|
}
|
|
} |