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/Root.cs
Normal file
12
Content.PatreonParser/Root.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Content.PatreonParser;
|
||||
|
||||
public sealed class Root
|
||||
{
|
||||
[JsonPropertyName("data")]
|
||||
public Data Data = default!;
|
||||
|
||||
[JsonPropertyName("included")]
|
||||
public List<Included> Included = default!;
|
||||
}
|
||||
Reference in New Issue
Block a user