mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 14:57:54 +00:00
15 lines
333 B
C#
15 lines
333 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Myriad.Gateway
|
|||
|
|
{
|
|||
|
|
public record ClusterSessionState
|
|||
|
|
{
|
|||
|
|
public List<ShardState> Shards { get; init; }
|
|||
|
|
|
|||
|
|
public record ShardState
|
|||
|
|
{
|
|||
|
|
public ShardInfo Shard { get; init; }
|
|||
|
|
public ShardSessionInfo Session { get; init; }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|