Command.cs 290 B

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