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 | 7936281edc1ac592cd318b8dccb37f3c4e7334e8 (patch) | |
tree | 033a69be9b3db46ad50f8b2703d73de99245f95c /Timeline/Models/Http/Timeline.cs | |
parent | d5cc18a9ea161b28e1a7acd67a0c4558ba265800 (diff) | |
download | timeline-7936281edc1ac592cd318b8dccb37f3c4e7334e8.tar.gz timeline-7936281edc1ac592cd318b8dccb37f3c4e7334e8.tar.bz2 timeline-7936281edc1ac592cd318b8dccb37f3c4e7334e8.zip |
Timeline title feature.
Diffstat (limited to 'Timeline/Models/Http/Timeline.cs')
-rw-r--r-- | Timeline/Models/Http/Timeline.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Timeline/Models/Http/Timeline.cs b/Timeline/Models/Http/Timeline.cs index 6498fa74..3596af18 100644 --- a/Timeline/Models/Http/Timeline.cs +++ b/Timeline/Models/Http/Timeline.cs @@ -68,6 +68,10 @@ namespace Timeline.Models.Http /// </summary>
public string UniqueId { get; set; } = default!;
/// <summary>
+ /// Title.
+ /// </summary>
+ public string Title { get; set; } = default!;
+ /// <summary>
/// Name of timeline.
/// </summary>
public string Name { get; set; } = default!;
|