Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/GoodViewModel.cs

23 lines
674 B
C#
Raw Normal View History

using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace HardwareShopContracts.ViewModels
{
public class GoodViewModel : IGoodModel
{
public int Id { get; set; }
[DisplayName("Товар")]
public string GoodName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Price { get; set; }
public int UserId { get; set; }
[DisplayName("Логин кладовщика")]
public string UserLogin { get; set; } = string.Empty;
public Dictionary<int, (IComponentModel, int)> GoodComponents
{
get;
set;
} = new();
}
}