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