2021-01-08 16:26:19 +01:00

15 lines
340 B
C#

using System;
using System.Linq;
namespace MyHN.Application
{
public class LinkDto
{
public Guid Id { get; set; }
public string Url { get; set; }
public DateTime CreatedAt { get; set; }
public string CreatedByName { get; set; }
public int UpvotesCount { get; set; }
public int DownvotesCount { get; set; }
}
}