10 lines
234 B
C#
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!;
|
|
}
|