| 1234567891011 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Developers.Tokens.IssuePat;
- public sealed record Command(
- int OwnerMemberID,
- string Name,
- IReadOnlyList<string> Scopes,
- DateTime? ExpiresAt
- ) : ICommand<Result<Response>>;
|