2023-04-08 16:56:53 +04:00
|
|
|
|
namespace HardwareShopDataModels.Models
|
2023-04-01 12:10:46 +04:00
|
|
|
|
{
|
2023-04-01 12:26:05 +04:00
|
|
|
|
public interface IBuildModel : IId
|
2023-04-01 12:10:46 +04:00
|
|
|
|
{
|
2023-04-02 15:43:05 +04:00
|
|
|
|
double Price { get; }
|
2023-04-01 12:10:46 +04:00
|
|
|
|
|
|
|
|
|
string BuildName { get; }
|
|
|
|
|
|
2023-04-01 16:34:06 +04:00
|
|
|
|
int UserId { get; }
|
2023-04-01 12:58:12 +04:00
|
|
|
|
|
2023-04-02 15:43:05 +04:00
|
|
|
|
Dictionary<int, (IPurchaseModel, int)> BuildPurchases { get; }
|
2023-04-03 23:59:08 +04:00
|
|
|
|
|
|
|
|
|
Dictionary<int, (IComponentModel, int)> BuildComponents { get; }
|
|
|
|
|
|
|
|
|
|
Dictionary<int, ICommentModel> BuildComments { get; }
|
2023-04-01 12:10:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|