15 lines
363 B
C#
15 lines
363 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; }
|
|
public string CreatedByUsername { get; set; }
|
|
}
|
|
} |