2023-04-01 13:12:37 +04:00
|
|
|
|
using HardwareShopDataModels.Enums;
|
2023-04-01 12:10:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HardwareShopDataModels.Models
|
|
|
|
|
{
|
2023-04-01 12:26:05 +04:00
|
|
|
|
public interface IBuildModel : IId
|
2023-04-01 12:10:46 +04:00
|
|
|
|
{
|
|
|
|
|
decimal Price { get; }
|
|
|
|
|
|
|
|
|
|
string BuildName { get; }
|
|
|
|
|
|
2023-04-01 16:34:06 +04:00
|
|
|
|
int UserId { get; }
|
2023-04-01 12:58:12 +04:00
|
|
|
|
|
|
|
|
|
Dictionary<int, (IComponentModel, int)>? BuildComponents { get; }
|
2023-04-01 12:10:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|