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!;
}
}