Command.cs 412 B

12345678
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Developers.Profile.StartKyc;
  4. // 사용자가 onboarding /kyc 페이지의 "시작" 버튼을 눌러 NICE 본인인증을 시작.
  5. // Backend: NICE auth/url 호출 → NiceAuthSession row 생성 → auth_url 반환 → Frontend popup.
  6. public sealed record Command(int MemberID) : ICommand<Result<Response>>;