Command.cs 319 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Developers.Apps.CreateApp;
  4. public sealed record Command(
  5. int OwnerMemberID,
  6. string Name,
  7. string? Description,
  8. string? HomepageUrl,
  9. IReadOnlyList<string> Scopes
  10. ) : ICommand<Result<Response>>;