hn-dotnet/Domain/Link.cs
2020-12-01 20:30:17 +01:00

19 lines
369 B
C#

using System;
namespace HN.Domain
{
public class Link
{
public Guid Id { get; }
public string Url { get; }
public DateTime CreatedAt { get; }
public Link(string url)
{
this.Id = Guid.NewGuid();
this.CreatedAt = DateTime.UtcNow;
this.Url = url;
}
}
}