Command.cs 275 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.OAuth.IssueToken;
  4. public sealed record Command(
  5. string GrantType,
  6. string? ClientID,
  7. string? ClientSecret,
  8. string? Scope
  9. ) : ICommand<Result<Response>>;