10 lines
209 B
C#
Raw Normal View History

using NodaTime;
namespace PluralKit.Core {
public class PKSwitch
{
2020-06-14 21:37:04 +02:00
public SwitchId Id { get; }
public SystemId System { get; set; }
2020-06-13 13:11:08 +02:00
public Instant Timestamp { get; }
}
}