Computer_Hardware_Store/HardwareShop/HardwareShopContracts/BindingModels/BuildBindingModel.cs

18 lines
456 B
C#
Raw Normal View History

using HardwareShopDataModels.Models;
2023-04-01 12:58:12 +04:00
using System.ComponentModel;
namespace HardwareShopContracts.BindingModels
2023-04-01 12:58:12 +04:00
{
public class BuildBindingModel : IBuildModel
2023-04-01 12:58:12 +04:00
{
public int Id { get; set; }
2023-04-02 15:43:05 +04:00
public double Price { get; set; }
2023-04-01 12:58:12 +04:00
public string BuildName { get; set; } = string.Empty;
2023-04-01 16:34:06 +04:00
public int UserId { get; set; }
2023-04-01 12:58:12 +04:00
2023-04-02 15:43:05 +04:00
public Dictionary<int, (IPurchaseModel, int)> BuildPurchases { get; set; } = new();
2023-04-01 12:58:12 +04:00
}
}