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