using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Auth; public class EmailResendResponseDto { [JsonPropertyName("resent")] public bool Resent { get; set; } [JsonPropertyName("cooldown_seconds")] public int CooldownSeconds { get; set; } [JsonPropertyName("expires_in_seconds")] public int ExpiresInSeconds { get; set; } }