10 lines
197 B
C#
10 lines
197 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Content.PatreonParser;
|
|
|
|
public sealed class CurrentlyEntitledTiers
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public List<TierData> Data = default!;
|
|
}
|