| 1234567891011121314151617 |
- namespace Application.Features.Api.Developers.Profile.GetProfile;
- // Frontend 가 number 로 받도록 enum 을 int 로 명시 직렬화 (JsonStringEnumConverter 영향 차단).
- public sealed record Response(
- int ID,
- string CompanyName,
- string BusinessNumber,
- string CeoName,
- string ContactName,
- string ContactPhone,
- int KycStatus,
- DateTime? KycVerifiedAt,
- int ApprovalStatus,
- string? ApprovalReason,
- DateTime? ApprovedAt,
- DateTime CreatedAt
- );
|