Neighbourhood.omg.lol/Models/Status.cs

41 lines
1.2 KiB
C#

using Microsoft.AspNetCore.Components;
namespace Neighbourhood.omg.lol.Models
{
public class Status {
public string Id { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public string Created { get; set; } = string.Empty;
public string RelativeTime { get; set; } = string.Empty;
public string Emoji { get; set; } = string.Empty;
public string Background { get; set; } = string.Empty;
public string BackgroundColor { get => Background; set => Background = "#" + value; }
public string Content { get; set; } = string.Empty;
public string RenderedMarkdown { get; set; } = string.Empty;
public string ExternalUrl { get; set; } = string.Empty;
public DateTimeOffset CreatedTime { get => DateTimeOffset.UnixEpoch.AddSeconds(Convert.ToInt64(Created)); }
public string EmojiOrDefault {
get {
return string.IsNullOrEmpty(Emoji) ? "✨" : Emoji;
}
}
public MarkupString HtmlContent {
get => Utilities.MdToHtmlMarkup(Content);
}
public string Url {
get {
return $"https://status.lol/{Address}/{Id}";
}
}
public string UserUrl {
get {
return $"https://status.lol/{Address}";
}
}
}
}