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