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

14 lines
333 B
C#
Raw Normal View History

using NodaTime;
namespace PluralKit.Core
{
public class SystemFronter
{
public int SystemId { get; }
public int SwitchId { get; }
public Instant SwitchTimestamp { get; }
public int MemberId { get; }
public string MemberHid { get; }
public string MemberName { get; }
}
}