femto-backend/Femto.Modules.Authentication/Application/Commands/Login/LoginCommand.cs
2025-05-12 09:33:07 +02:00

5 lines
No EOL
168 B
C#

using Femto.Common.Domain;
namespace Femto.Modules.Authentication.Application.Commands;
public record LoginCommand(string Username, string Password) : ICommand<Guid>;