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

15 lines
351 B
C#

using System;
namespace API.DTOs.Email;
public sealed record 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; }
}