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