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