18 lines
305 B
C#

using System;
namespace HN.Application
{
public sealed class LinkDto
{
public Guid Id { get; set; }
public string Url { get; set; }
public DateTime CreatedAt { get; set; }
public int UpVotes { get; set; }
public int DownVotes { get; set; }
public LinkDto()
{
}
}
}