PluralKit/PluralKit.Core/Models/HidChangelog.cs

15 lines
340 B
C#
Raw Permalink Normal View History

2025-12-28 00:06:51 +13:00
using Newtonsoft.Json.Linq;
using NodaTime;
namespace PluralKit.Core;
public class HidChangelog
{
public int Id { get; }
public SystemId System { get; }
public ulong DiscordUid { get; }
public string HidType { get; }
public string HidOld { get; }
public string HidNew { get; }
public Instant Created { get; }
}