12 lines
274 B
C#
12 lines
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!;
|
|||
|
}
|