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 Scopes ) : ICommand>;