| 123456789101112 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Developers.Apps.CreateApp;
- public sealed record Command(
- int OwnerMemberID,
- string Name,
- string? Description,
- string? HomepageUrl,
- IReadOnlyList<string> Scopes
- ) : ICommand<Result<Response>>;
|