PluralKit/PluralKit.Core/Models/PKSwitch.cs

10 lines
199 B
C#
Raw Normal View History

using NodaTime;
namespace PluralKit.Core {
public class PKSwitch
{
2020-06-13 11:11:08 +00:00
public int Id { get; }
public int System { get; set; }
2020-06-13 11:11:08 +00:00
public Instant Timestamp { get; }
}
}