From f2ead327344fdacdf3fb1e761b4fb8ec89330f1e Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 25 Apr 2022 19:27:44 +0800 Subject: ... --- BackEnd/Timeline/Models/Http/HttpTimeline.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (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 83398baf..401d84a2 100644 --- a/BackEnd/Timeline/Models/Http/HttpTimeline.cs +++ b/BackEnd/Timeline/Models/Http/HttpTimeline.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; namespace Timeline.Models.Http @@ -13,8 +13,10 @@ namespace Timeline.Models.Http 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; + Title = title; +#pragma warning disable CS0618 // Type or member is obsolete + Name = name; +#pragma warning restore CS0618 // Type or member is obsolete NameV2 = nameV2; NameLastModifed = nameLastModifed; Description = description; @@ -42,6 +44,7 @@ namespace Timeline.Models.Http /// /// Name of timeline. /// + [Obsolete("Use NameV2")] public string Name { get; set; } = default!; /// /// Name of timeline. -- cgit v1.2.3