ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreContracts/ViewModels/CommentViewModel.cs

13 lines
345 B
C#
Raw Normal View History

2024-04-18 15:03:40 +04:00
using ComputerHardwareStoreDataModels.Models;
namespace ComputerHardwareStoreContracts.ViewModels
{
public class CommentViewModel : ICommentModel
2024-04-18 15:03:40 +04:00
{
public int Id { get; set; }
public DateTime Date { get; set; }
public string Text { get; set; } = string.Empty;
2024-04-18 15:03:40 +04:00
public int BuildId { get; set; }
}
}