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