From 21cf6a046b3e279c0694594f40e33daaa4d863f7 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 2 Feb 2021 18:59:41 +0800 Subject: ... --- BackEnd/Timeline/Models/Http/HttpTimelineLinks.cs | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 BackEnd/Timeline/Models/Http/HttpTimelineLinks.cs (limited to 'BackEnd/Timeline/Models/Http/HttpTimelineLinks.cs') diff --git a/BackEnd/Timeline/Models/Http/HttpTimelineLinks.cs b/BackEnd/Timeline/Models/Http/HttpTimelineLinks.cs new file mode 100644 index 00000000..722c1338 --- /dev/null +++ b/BackEnd/Timeline/Models/Http/HttpTimelineLinks.cs @@ -0,0 +1,26 @@ +namespace Timeline.Models.Http +{ + + /// + /// Related links for timeline. + /// + public class HttpTimelineLinks + { + public HttpTimelineLinks() { } + + public HttpTimelineLinks(string self, string posts) + { + Self = self; + Posts = posts; + } + + /// + /// Self. + /// + public string Self { get; set; } = default!; + /// + /// Posts url. + /// + public string Posts { get; set; } = default!; + } +} -- cgit v1.2.3