Add project to update Patrons.yml from a csv file containing Patreon webhooks, add missing Patrons (#20942)
This commit is contained in:
12
Content.PatreonParser/TierData.cs
Normal file
12
Content.PatreonParser/TierData.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Content.PatreonParser;
|
||||
|
||||
public sealed class TierData
|
||||
{
|
||||
[JsonPropertyName("id")]
|
||||
public int Id;
|
||||
|
||||
[JsonPropertyName("type")]
|
||||
public string Type = default!;
|
||||
}
|
||||
Reference in New Issue
Block a user