Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/CommentViewModel.cs

21 lines
522 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; }
}
}