6
2025-12-13 13:46:17 +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!;
}