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