using System;
namespace NPP.SmartSchedue.Api.Contracts.Services.Notification.Output;
///
/// 发送邮件输出
///
public class SendEmailOutput
{
///
/// 是否发送成功
///
public bool IsSuccess { get; set; }
///
/// 错误消息
///
public string? ErrorMessage { get; set; }
///
/// 发送时间
///
public DateTime SendTime { get; set; } = DateTime.Now;
///
/// 接收人邮箱
///
public string RecipientEmail { get; set; } = "";
///
/// 邮件主题
///
public string Subject { get; set; } = "";
}