hn-20-2/Application/CommentDTO.cs
2021-04-29 12:01:02 +02:00

13 lines
283 B
C#

using System;
namespace Application
{
public class CommentDTO
{
public Guid Id { get; set; }
public string Content { get; set; }
public int UpvotesCount { get; set; }
public int DownvotesCount { get; set; }
public string CreatedByUsername { get; set; }
}
}