Command.cs 211 B

12345678
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Auth.RefreshToken;
  4. public sealed record Command(
  5. string RefreshToken
  6. ) : ICommand<Result<Response>>;