summaryrefslogtreecommitdiffstats
path: root/src/server/Api/V1/Entries/Dtos/EntryDto.cs
blob: 5161373ea610fa22c5f1beeb78d343d229134ee6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
}