diff options
author | crupest <crupest@outlook.com> | 2020-08-27 01:13:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-27 01:13:31 +0800 |
commit | 35f6584f47676353733f1cc9182d84ed4ded5cbc (patch) | |
tree | 45d959bc12082a8b4f6b084697030b34517707d1 /Timeline/Models/Timeline.cs | |
parent | 7a974f5284f19e7b2248f633bcbd5e263aeddf81 (diff) | |
download | timeline-35f6584f47676353733f1cc9182d84ed4ded5cbc.tar.gz timeline-35f6584f47676353733f1cc9182d84ed4ded5cbc.tar.bz2 timeline-35f6584f47676353733f1cc9182d84ed4ded5cbc.zip |
Timeline title feature.
Diffstat (limited to 'Timeline/Models/Timeline.cs')
-rw-r--r-- | Timeline/Models/Timeline.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Timeline/Models/Timeline.cs b/Timeline/Models/Timeline.cs index 34c253a0..42906053 100644 --- a/Timeline/Models/Timeline.cs +++ b/Timeline/Models/Timeline.cs @@ -74,6 +74,7 @@ namespace Timeline.Models public string UniqueID { get; set; } = default!;
public string Name { get; set; } = default!;
public DateTime NameLastModified { get; set; } = default!;
+ public string Title { get; set; } = default!;
public string Description { get; set; } = default!;
public User Owner { get; set; } = default!;
public TimelineVisibility Visibility { get; set; }
@@ -86,6 +87,7 @@ namespace Timeline.Models public class TimelineChangePropertyRequest
{
+ public string? Title { get; set; }
public string? Description { get; set; }
public TimelineVisibility? Visibility { get; set; }
}
|