Computer_Hardware_Store/HardwareShop/HardwareShopContracts/BindingModels/GoodBindingModel.cs
2023-04-02 16:37:37 +04:00

22 lines
471 B
C#

using HardwareShopDataModels.Models;
namespace HardwareShopContracts.BindingModels
{
public class GoodBindingModel : IGoodModel
{
public int Id { get; set; }
public string GoodName { get; set; } = string.Empty;
public double Price { get; set; }
public int UserId { get; set; }
public Dictionary<int, (IComponentModel, int)> GoodsComponents
{
get;
set;
} = new();
}
}