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

15 lines
363 B
C#

using System;
namespace Application
{
public class LinkDTO
{
public Guid Id { get; set; }
public string Url { get; set; }
public DateTime CreatedAt { get; set; }
public int UpvotesCount { get; set; }
public int DownvotesCount { get; set; }
public int CommentsCount { get; set; }
public string CreatedByUsername { get; set; }
}
}