12 lines
233 B
C#
12 lines
233 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; }
|
|
}
|
|
} |