ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/IPackageModel.cs
Максим Куклев 2a1c4aef7c загрузил
2024-04-07 17:40:43 +04:00

16 lines
368 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 SoftwareName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> SoftwareComponents { get; }
}
}