mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 05:47:53 +00:00
15 lines
340 B
C#
15 lines
340 B
C#
|
|
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; }
|
||
|
|
}
|