11 lines
194 B
C#
11 lines
194 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; }
|
|
}
|
|
} |