13 lines
345 B
C#
13 lines
345 B
C#
using ComputerHardwareStoreDataModels.Models;
|
|
|
|
namespace ComputerHardwareStoreContracts.ViewModels
|
|
{
|
|
public class CommentViewModel : ICommentModel
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public string Text { get; set; } = string.Empty;
|
|
public int BuildId { get; set; }
|
|
}
|
|
}
|