Response.cs 290 B

123456789
  1. namespace Application.Features.Api.Auth.SocialDisconnect;
  2. /// <summary>
  3. /// disconnect 처리 결과. Removed 는 실제로 삭제된 연동행 수(0 이면 이미 해제됐거나 미매칭 — 멱등).
  4. /// </summary>
  5. public sealed record Response(
  6. string Provider,
  7. int Removed
  8. );