SPMS_API/SPMS.Application/DTOs/Auth/EmailCheckResponseDto.cs
SEAN 5d49a2ce49 feat: 이메일 중복 체크 API 구현 (#58)
POST /v1/in/auth/email/check 엔드포인트 추가.
기존 EmailExistsAsync 활용하여 이메일 사용 가능 여부 반환.
2026-02-10 10:23:25 +09:00

12 lines
253 B
C#

using System.Text.Json.Serialization;
namespace SPMS.Application.DTOs.Auth;
public class EmailCheckResponseDto
{
public string Email { get; set; } = string.Empty;
[JsonPropertyName("is_available")]
public bool IsAvailable { get; set; }
}