From 7a974f5284f19e7b2248f633bcbd5e263aeddf81 Mon Sep 17 00:00:00 2001 From: crupest Date: Thu, 27 Aug 2020 00:47:52 +0800 Subject: Database add title to timeline. --- Timeline/Entities/TimelineEntity.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Timeline/Entities') diff --git a/Timeline/Entities/TimelineEntity.cs b/Timeline/Entities/TimelineEntity.cs index b084a572..3e592673 100644 --- a/Timeline/Entities/TimelineEntity.cs +++ b/Timeline/Entities/TimelineEntity.cs @@ -23,6 +23,9 @@ namespace Timeline.Entities [Column("name")] public string? Name { get; set; } + [Column("title")] + public string? Title { get; set; } + [Column("name_last_modified")] public DateTime NameLastModified { get; set; } -- cgit v1.2.3