19 lines
361 B
C#
19 lines
361 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 string CreatedByName { get; set; }
|
|
public int UpVotes { get; set; }
|
|
public int DownVotes { get; set; }
|
|
|
|
public CommentDto()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |