Command.cs 357 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Studio.Settlement.SaveAccount;
  4. public sealed record Command(
  5. int MemberID,
  6. int? AccountID,
  7. string BankCode,
  8. string AccountNumber,
  9. string AccountHolder
  10. ) : ICommand<Result<Response>>;
  11. public sealed record Response(string Message);