mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-11 08:10:10 +00:00
8 lines
172 B
C#
8 lines
172 B
C#
|
|
namespace Myriad.Gateway
|
|||
|
|
{
|
|||
|
|
public record ShardSessionInfo
|
|||
|
|
{
|
|||
|
|
public string? Session { get; init; }
|
|||
|
|
public int? LastSequence { get; init; }
|
|||
|
|
}
|
|||
|
|
}
|