mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-05 05:17:54 +00:00
Some checks failed
Build and push Docker image / .net docker build (push) Has been cancelled
.net checks / run .net tests (push) Has been cancelled
.net checks / dotnet-format (push) Has been cancelled
Build and push Rust service Docker images / rust docker build (push) Has been cancelled
rust checks / cargo fmt (push) Has been cancelled
15 lines
No EOL
340 B
C#
15 lines
No EOL
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; }
|
|
} |