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