Command.cs 295 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Developers.Tokens.IssuePat;
  4. public sealed record Command(
  5. int OwnerMemberID,
  6. string Name,
  7. IReadOnlyList<string> Scopes,
  8. DateTime? ExpiresAt
  9. ) : ICommand<Result<Response>>;