bloxstrap/Bloxstrap/Models/APIs/Config/SupporterData.cs

12 lines
286 B
C#

namespace Bloxstrap.Models.APIs.Config
{
public class SupporterData
{
[JsonPropertyName("monthly")]
public SupporterGroup Monthly { get; set; } = new();
[JsonPropertyName("oneoff")]
public SupporterGroup OneOff { get; set; } = new();
}
}