summaryrefslogtreecommitdiffstats
path: root/src/server/Models/Database/Entry.cs
blob: a992a872de07dfd3f206a57f21bcfcbd18d1c8f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace IOL.BookmarkThing.Server.Models.Database;

public class Entry : Base
{
	public Guid UserId { get; set; }
	public Uri Url { get; set; }
	public string Description { get; set; }
	public string Tags { get; set; }
}