Command.cs 284 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.MyPage.ChangeEmail;
  4. public sealed record Command(
  5. int MemberID,
  6. string NewEmail,
  7. string? IpAddress,
  8. string? UserAgent,
  9. string? Referrer
  10. ) : ICommand<Result>;