From ddfd4cedaf696e6ad19f40bec4db0f9d0e28dc65 Mon Sep 17 00:00:00 2001 From: crupest Date: Thu, 18 Jun 2020 16:21:39 +0800 Subject: Add last modified info to timeline. --- Timeline/Models/Timeline.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Timeline/Models') diff --git a/Timeline/Models/Timeline.cs b/Timeline/Models/Timeline.cs index d4b3e849..3701ed35 100644 --- a/Timeline/Models/Timeline.cs +++ b/Timeline/Models/Timeline.cs @@ -72,12 +72,15 @@ namespace Timeline.Models { public string UniqueID { get; set; } = default!; public string Name { get; set; } = default!; + public DateTime NameLastModified { get; set; } = default!; public string Description { get; set; } = default!; public User Owner { get; set; } = default!; public TimelineVisibility Visibility { get; set; } #pragma warning disable CA2227 // Collection properties should be read only public List Members { get; set; } = default!; #pragma warning restore CA2227 // Collection properties should be read only + public DateTime CreateTime { get; set; } = default!; + public DateTime LastModified { get; set; } = default!; } public class TimelineChangePropertyRequest -- cgit v1.2.3