PIbd-22_Kaznacheeva.E.K._So.../SoftwareInstallation/SoftwareInstallationDataModels/IPackageModel.cs
2024-02-27 23:44:38 +04:00

16 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationDataModels.Models
{
public interface IPackageModel : IId
{
string PackageName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> PackageComponents { get; }
}
}