2024-05-01 12:35:49 +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; }
}
}