2024-04-30 18:59:45 +04:00

12 lines
329 B
C#

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