Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/CommentViewModel.cs

24 lines
640 B
C#
Raw Normal View History

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;
2023-04-01 16:34:06 +04:00
public int BuildId { get; set; }
2023-04-01 21:25:50 +04:00
public int UserId { get; set; }
2023-04-01 21:39:41 +04:00
[DisplayName("Логин работника")]
public string UserLogin { get; set; } = string.Empty;
}
}