PluralKit/PluralKit.Core/Database/Views/SystemFronter.cs

14 lines
348 B
C#
Raw Normal View History

using NodaTime;
namespace PluralKit.Core
{
public class SystemFronter
{
2020-06-14 19:37:04 +00:00
public SystemId SystemId { get; }
public SwitchId SwitchId { get; }
public Instant SwitchTimestamp { get; }
2020-06-14 19:37:04 +00:00
public MemberId MemberId { get; }
public string MemberHid { get; }
public string MemberName { get; }
}
}