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

public class Base
{
	public Base() {
		Created = DateTime.UtcNow;
	}

	public Guid Id { get; set; }
	public DateTime Created { get; set; }
}