PluralKit/PluralKit.Core/Models/PKSwitch.cs
2020-06-13 13:11:08 +02:00

10 lines
199 B
C#

using NodaTime;
namespace PluralKit.Core {
public class PKSwitch
{
public int Id { get; }
public int System { get; set; }
public Instant Timestamp { get; }
}
}