Kavita/API/DTOs/Email/EmailTestResultDto.cs
2025-05-04 07:14:44 -07:00

12 lines
346 B
C#

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