6
2026-01-24 12:49:55 +03: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!;
}