mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-29 12:34:09 +02:00
11 lines
316 B
C#
11 lines
316 B
C#
using System.Collections.Immutable;
|
|
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Web.Users;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record LogInSuccess(
|
|
[property: MemoryPackOrder(0)] AuthenticatedUserInfo UserInfo,
|
|
[property: MemoryPackOrder(1)] ImmutableArray<byte> Token
|
|
);
|