Command.cs 402 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Developers.Profile.CompleteKyc;
  4. // NICE 표준창 → return_url 콜백.
  5. // Backend: SessionToken 으로 NiceAuthSession 조회 → result 호출 → 복호화 → Developer.MarkKycVerified.
  6. public sealed record Command(
  7. string SessionToken,
  8. string WebTransactionID
  9. ) : ICommand<Result>;