6
2025-08-13 15:03:01 +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!;
}