aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Models/Http/Timeline.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-14 01:03:20 +0800
committercrupest <crupest@outlook.com>2020-06-14 01:03:20 +0800
commit7ed5306c62262921264bf9c83e00a4c9f3ae33b1 (patch)
tree96f2c2c2ae927bf68e2e8306f6e4c90aa7508c05 /Timeline/Models/Http/Timeline.cs
parent4cfb50d40384e5dea1805f8d6fc5ab38cd32d93b (diff)
downloadtimeline-7ed5306c62262921264bf9c83e00a4c9f3ae33b1.tar.gz
timeline-7ed5306c62262921264bf9c83e00a4c9f3ae33b1.tar.bz2
timeline-7ed5306c62262921264bf9c83e00a4c9f3ae33b1.zip
feat(back): Fix #103 .
Diffstat (limited to 'Timeline/Models/Http/Timeline.cs')
-rw-r--r--Timeline/Models/Http/Timeline.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Timeline/Models/Http/Timeline.cs b/Timeline/Models/Http/Timeline.cs
index fb767f10..a942db1e 100644
--- a/Timeline/Models/Http/Timeline.cs
+++ b/Timeline/Models/Http/Timeline.cs
@@ -26,7 +26,8 @@ namespace Timeline.Models.Http
public class TimelineInfo
{
- public string? Name { get; set; }
+ public string UniqueId { get; set; } = default!;
+ public string Name { get; set; } = default!;
public string Description { get; set; } = default!;
public UserInfo Owner { get; set; } = default!;
public TimelineVisibility Visibility { get; set; }