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

16 lines
368 B
C#
Raw Normal View History

2024-04-07 17:40:43 +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-04-07 17:40:43 +04:00
public interface IPackageModel : IId
{
string SoftwareName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> SoftwareComponents { get; }
}
2024-04-07 16:54:02 +04:00
}