2024-05-12 14:45:39 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
namespace SoftwareInstallationDataModels.Models
|
|
|
|
|
{
|
2024-05-12 14:45:39 +04:00
|
|
|
|
public interface IPackageModel : IId
|
|
|
|
|
{
|
|
|
|
|
string PackageName { get; }
|
|
|
|
|
double Price { get; }
|
|
|
|
|
Dictionary<int, (IComponentModel, int)> PackageComponents { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|