ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreDataModels/Models/IBuildModel.cs
2024-05-01 12:35:49 +04:00

12 lines
336 B
C#

namespace ComputerHardwareStoreDataModels.Models
{
public interface IBuildModel : IId
{
string Name { get; }
double Price { get; }
IVendorModel Vendor { get; }
public Dictionary<int, (IComponentModel, int)> BuildComponents { get; }
public List<ICommentModel> Comments { get; }
}
}