19 lines
385 B
C#
Raw Normal View History

2021-08-27 11:03:47 -04:00
using NodaTime;
2021-06-10 12:52:47 +02:00
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
}
}
}