using PnvPanel.Application.Common.Messaging; using PnvPanel.Application.Common.Models; namespace PnvPanel.Application.Auth.Register; public sealed record RegisterCommand(string UserName, string Password) : ICommand>; public sealed record RegisterResult(Guid Id, string UserName);