Computer_Hardware_Store/HardwareShop/HardwareShopDataModels/Models/IBuildModel.cs

18 lines
401 B
C#
Raw Normal View History

namespace HardwareShopDataModels.Models
{
public interface IBuildModel : IId
{
2023-04-02 15:43:05 +04:00
double Price { get; }
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; }
Dictionary<int, (IComponentModel, int)> BuildComponents { get; }
Dictionary<int, ICommentModel> BuildComments { get; }
}
}