| 1234567891011 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.OAuth.IssueToken;
- public sealed record Command(
- string GrantType,
- string? ClientID,
- string? ClientSecret,
- string? Scope
- ) : ICommand<Result<Response>>;
|