namespace API.DTOs.Email; /// /// Represents if Test Email Service URL was successful or not and if any error occured /// public sealed record EmailTestResultDto { public bool Successful { get; set; } public string ErrorMessage { get; set; } = default!; public string EmailAddress { get; set; } = default!; }