Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/CommentViewModel.cs
2023-04-01 21:25:50 +04:00

24 lines
631 B
C#

using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace HardwareShopContracts.ViewModels
{
public class CommentViewModel : ICommentModel
{
public int Id { get; set; }
[DisplayName("Комментарий")]
public string Text { get; set; } = string.Empty;
[DisplayName("Название сборки")]
public string BuildName { get; set; } = string.Empty;
public int BuildId { get; set; }
public int UserId { get; set; }
[DisplayName("Email клиента")]
public string UserEmail { get; set; } = string.Empty;
}
}