Kavita/API/DTOs/Email/EmailHistoryDto.cs
2025-01-20 06:14:57 -08:00

14 lines
343 B
C#

using System;
namespace API.DTOs.Email;
public class EmailHistoryDto
{
public long Id { get; set; }
public bool Sent { get; set; }
public DateTime SendDate { get; set; } = DateTime.UtcNow;
public string EmailTemplate { get; set; }
public string ErrorMessage { get; set; }
public string ToUserName { get; set; }
}