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; } }