Files
PluralKit/PluralKit.Core/Models/PKSwitch.cs
2020-06-14 21:37:04 +02:00

10 lines
209 B
C#

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