mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-29 21:34:07 +02:00
12 lines
359 B
C#
12 lines
359 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)] Guid UserGuid,
|
|
[property: MemoryPackOrder(1)] PermissionSet Permissions,
|
|
[property: MemoryPackOrder(2)] ImmutableArray<byte> Token
|
|
);
|