mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
15 lines
No EOL
333 B
C#
15 lines
No EOL
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; }
|
|
}
|
|
}
|
|
} |