mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
15 lines
351 B
C#
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; }
|
|
|
|
}
|