femto-backend/Femto.Modules.Auth/Application/Interface/Deauthenticate/DeauthenticateCommand.cs
2025-05-29 00:39:40 +02:00

6 lines
No EOL
200 B
C#

using Femto.Common.Domain;
namespace Femto.Modules.Auth.Application.Interface.Deauthenticate;
public record DeauthenticateCommand(Guid UserId, string SessionId, string? RememberMeToken) : ICommand;