namespace IOL.BookmarkThing.Server.Api.V1.Entries.Dtos; public class EntryDto { public EntryDto(Entry dbEntry) { Id = dbEntry.Id; Url = dbEntry.Url; Description = dbEntry.Description; Tags = dbEntry.Tags; } public Guid Id { get; set; } public Uri Url { get; set; } public string Description { get; set; } public string Tags { get; set; } }