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