Uwaa/Pleroma/Models/Context.cs
2024-11-22 08:55:08 +00:00

12 lines
No EOL
274 B
C#

using System.Text.Json.Serialization;
namespace Uwaa.Pleroma;
public class Context
{
[JsonPropertyName("ancestors")]
public Status[] Ancestors { get; set; } = null!;
[JsonPropertyName("descendants")]
public Status[] Descendants { get; set; } = null!;
}