aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/Timeline.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-18 18:14:18 +0800
committerGitHub <noreply@github.com>2020-06-18 18:14:18 +0800
commit5f57f6d3f9c7bd94929f3e50915d57da7c031538 (patch)
tree0f7dc1c0a58042c13f08b3d557e8c4226827ef56 /Timeline/Models/Timeline.cs
parent4a46206ea5f004ecb595de4bfd573b6263ac462b (diff)
parentc5c50332aebd9a3e7d5d2c9163f0cad6c6ba241b (diff)
downloadtimeline-5f57f6d3f9c7bd94929f3e50915d57da7c031538.tar.gz
timeline-5f57f6d3f9c7bd94929f3e50915d57da7c031538.tar.bz2
timeline-5f57f6d3f9c7bd94929f3e50915d57da7c031538.zip
Merge pull request #111 from crupest/timeline-last-modified
Timeline last modified property.
Diffstat (limited to 'Timeline/Models/Timeline.cs')
-rw-r--r--Timeline/Models/Timeline.cs3
1 files changed, 3 insertions, 0 deletions
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<User> 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