| 12345678910111213 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Developers.Profile.UpsertProfile;
- public sealed record Command(
- int MemberID,
- string CompanyName,
- string BusinessNumber,
- string CeoName,
- string ContactName,
- string ContactPhone
- ) : ICommand<Result<Response>>;
|