6
2026-01-13 18:31:02 +02:00

10 lines
234 B
C#

using System.Text.Json.Serialization;
namespace Content.PatreonParser;
public sealed class Relationships
{
[JsonPropertyName("currently_entitled_tiers")]
public CurrentlyEntitledTiers CurrentlyEntitledTiers = default!;
}