namespace Uwaa.Pleroma; public class Hashtag { /// /// The value of the hashtag after the # sign /// [JsonPropertyName("name")] public string Name { get; set; } = null!; /// /// A link to the hashtag on the instance /// [JsonPropertyName("url")] public string URL { get; set; } = null!; [JsonConstructor()] internal Hashtag() { } public override string ToString() => $"#{Name}"; }