Command.cs 340 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Developers.Profile.UpsertProfile;
  4. public sealed record Command(
  5. int MemberID,
  6. string CompanyName,
  7. string BusinessNumber,
  8. string CeoName,
  9. string ContactName,
  10. string ContactPhone
  11. ) : ICommand<Result<Response>>;