18 lines
315 B
C#

using System;
namespace HN.Application
{
public sealed class CommentDto
{
public Guid Id { get; set; }
public string Content { get; set; }
public DateTime CreatedAt { get; set; }
public int UpVotes { get; set; }
public int DownVotes { get; set; }
public CommentDto()
{
}
}
}