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; } } }