mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-29 04:15:45 +02:00
13 lines
414 B
C#
13 lines
414 B
C#
using MemoryPack;
|
|
using Phantom.Common.Data;
|
|
using Phantom.Common.Data.Web.Users;
|
|
using Phantom.Utils.Actor;
|
|
|
|
namespace Phantom.Common.Messages.Web.ToController;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record LogInMessage(
|
|
[property: MemoryPackOrder(0)] string Username,
|
|
[property: MemoryPackOrder(1)] string Password
|
|
) : IMessageToController, ICanReply<Optional<LogInSuccess>>;
|