irc-netcore-api/IRaCIS.Core.Application/Service/Common/DTO/EmailLogViewModel.cs

73 lines
1.7 KiB
C#

//--------------------------------------------------------------------
// 此代码由liquid模板自动生成 byzhouhang 20240909
// 生成时间 2025-10-28 06:22:47Z
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using IRaCIS.Core.Domain.Share;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.ViewModel;
public class EmailLogView : EmailLogAddOrEdit
{
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
public class EmailLogAddOrEdit
{
public Guid? Id { get; set; }
public string Attachments { get; set; }
public string CcRecipients { get; set; }
public DateTime? EmailDate { get; set; }
public EmailState EmailStateEnum { get; set; }
public string EmailSubject { get; set; }
public string ErrorInfo { get; set; }
public string MessageId { get; set; }
public string SenderAddress { get; set; }
public string ToRecipients { get; set; }
public string UniqueId { get; set; }
}
public class EmailLogQuery:PageInput
{
public string Attachments { get; set; }
public string CcRecipients { get; set; }
public DateTime? EmailDate { get; set; }
public EmailState? EmailStateEnum { get; set; }
public string? EmailSubject { get; set; }
public string? ErrorInfo { get; set; }
public string? MessageId { get; set; }
public string? SenderAddress { get; set; }
public string ToRecipients { get; set; }
public string? UniqueId { get; set; }
}