ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/IPackageModel.cs

15 lines
365 B
C#
Raw Normal View History

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; }
}
}