Uwaa/Pleroma/Models/Context.cs

12 lines
274 B
C#
Raw Normal View History

2024-11-22 09:55:08 +01:00
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!;
}