15 lines
438 B
C#
15 lines
438 B
C#
using System;
|
|
|
|
namespace Zentral.API.Apps.Communications.Dtos;
|
|
|
|
public class EmailLogDto
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime SentDate { get; set; }
|
|
public string Sender { get; set; } = string.Empty;
|
|
public string Recipient { get; set; } = string.Empty;
|
|
public string Subject { get; set; } = string.Empty;
|
|
public string Status { get; set; } = string.Empty;
|
|
public string? ErrorMessage { get; set; }
|
|
}
|