mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-29 21:34:07 +02:00
15 lines
538 B
C#
15 lines
538 B
C#
using System.Collections.Immutable;
|
|
using MemoryPack;
|
|
using Phantom.Common.Data;
|
|
using Phantom.Common.Data.Web.EventLog;
|
|
using Phantom.Common.Data.Web.Users;
|
|
using Phantom.Utils.Actor;
|
|
|
|
namespace Phantom.Common.Messages.Web.ToController;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record GetEventLogMessage(
|
|
[property: MemoryPackOrder(0)] ImmutableArray<byte> AuthToken,
|
|
[property: MemoryPackOrder(1)] int Count
|
|
) : IMessageToController, ICanReply<Result<ImmutableArray<EventLogItem>, UserActionFailure>>;
|