using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Auth.ResetPassword; public sealed record Command( string Email, string Password, string CookieValue ) : ICommand;