2021-01-08 16:26:19 +01:00

13 lines
282 B
C#

using System;
namespace MyHN.Application
{
public class CommentDto
{
public Guid Id { get; set; }
public DateTime CreatedAt { get; set; }
public string Content { get; set; }
public int UpvotesCount { get; set; }
public int DownvotesCount { get; set; }
}
}