PluralKit/PluralKit.Core/Models/PKShardInfo.cs

19 lines
388 B
C#
Raw Normal View History

2021-06-10 10:52:47 +00:00
using NodaTime;
namespace PluralKit.Core
{
public class PKShardInfo
{
public int Id { get; }
public ShardStatus Status { get; }
public float? Ping { get; }
public Instant? LastHeartbeat { get; }
public Instant? LastConnection { get; }
public enum ShardStatus
{
Down = 0,
Up = 1
}
}
}