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/Attributes.cs
Normal file
15
Content.PatreonParser/Attributes.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Content.PatreonParser;
|
||||
|
||||
public sealed class Attributes
|
||||
{
|
||||
[JsonPropertyName("full_name")]
|
||||
public string FullName = default!;
|
||||
|
||||
[JsonPropertyName("pledge_relationship_start")]
|
||||
public DateTime? PledgeRelationshipStart;
|
||||
|
||||
[JsonPropertyName("title")]
|
||||
public string Title = default!;
|
||||
}
|
||||
Reference in New Issue
Block a user