From 928ba0ce419bacba113951095278a5138ead34cf Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 10 Apr 2022 16:04:03 +0800 Subject: ... --- BackEnd/Timeline/Models/Http/HttpTimeline.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'BackEnd/Timeline/Models/Http/HttpTimeline.cs') diff --git a/BackEnd/Timeline/Models/Http/HttpTimeline.cs b/BackEnd/Timeline/Models/Http/HttpTimeline.cs index e3e46bd5..83398baf 100644 --- a/BackEnd/Timeline/Models/Http/HttpTimeline.cs +++ b/BackEnd/Timeline/Models/Http/HttpTimeline.cs @@ -10,11 +10,12 @@ namespace Timeline.Models.Http { public HttpTimeline() { } - public HttpTimeline(string uniqueId, string title, string name, DateTime nameLastModifed, string description, HttpUser owner, TimelineVisibility visibility, List members, string? color, DateTime createTime, DateTime lastModified, bool isHighlight, bool isBookmark, bool manageable, bool postable, HttpTimelineLinks links) + public HttpTimeline(string uniqueId, string title, string name, string nameV2, DateTime nameLastModifed, string description, HttpUser owner, TimelineVisibility visibility, List members, string? color, DateTime createTime, DateTime lastModified, bool isHighlight, bool isBookmark, bool manageable, bool postable, HttpTimelineLinks links) { UniqueId = uniqueId; Title = title; Name = name; + NameV2 = nameV2; NameLastModifed = nameLastModifed; Description = description; Owner = owner; @@ -43,6 +44,10 @@ namespace Timeline.Models.Http /// public string Name { get; set; } = default!; /// + /// Name of timeline. + /// + public string NameV2 { get; set; } = default!; + /// /// Last modified time of timeline name. /// public DateTime NameLastModifed { get; set; } = default!; -- cgit v1.2.3