platoff aeeee 4b0700dee1 20
2024-05-24 14:23:37 +04:00

24 lines
745 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using FurnitureAssemblyDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyContracts.ViewModels
{
// Класс для отображения пользователю информации о продуктах (изделиях)
public class UsersViewModel : IUsersModel
{
public int Id { get; set; }
[DisplayName("имя юзера")]
public string UsersName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Price { get; set; }
public Dictionary<int, (IKommentModel, int)> UsersKomments { get; set; } = new();
}
}