hn-20-2/Application/LinkDTO.cs

14 lines
313 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; }
}
}