aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Entities/TimelineEntity.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/Entities/TimelineEntity.cs')
-rw-r--r--Timeline/Entities/TimelineEntity.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Timeline/Entities/TimelineEntity.cs b/Timeline/Entities/TimelineEntity.cs
index 1159cbfe..b084a572 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("name_last_modified")]
+ public DateTime NameLastModified { get; set; }
+
[Column("description")]
public string? Description { get; set; }
@@ -38,6 +41,9 @@ namespace Timeline.Entities
[Column("create_time")]
public DateTime CreateTime { get; set; }
+ [Column("last_modified")]
+ public DateTime LastModified { get; set; }
+
[Column("current_post_local_id")]
public long CurrentPostLocalId { get; set; }