12 lines
253 B
C#
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; }
|
|
}
|