Response.cs 494 B

1234567891011121314151617
  1. namespace Application.Features.Api.Developers.Profile.GetProfile;
  2. // Frontend 가 number 로 받도록 enum 을 int 로 명시 직렬화 (JsonStringEnumConverter 영향 차단).
  3. public sealed record Response(
  4. int ID,
  5. string CompanyName,
  6. string BusinessNumber,
  7. string CeoName,
  8. string ContactName,
  9. string ContactPhone,
  10. int KycStatus,
  11. DateTime? KycVerifiedAt,
  12. int ApprovalStatus,
  13. string? ApprovalReason,
  14. DateTime? ApprovedAt,
  15. DateTime CreatedAt
  16. );