sozsoft-platform/api/modules/Sozsoft.MailQueue/Domain/Entities/BackgroundWorker_MailQueue.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

23 lines
853 B
C#

using Volo.Abp.Domain.Entities.Auditing;
namespace Sozsoft.MailQueue.Domain.Entities;
public class BackgroundWorker_MailQueue : FullAuditedEntity<Guid>
{
public Guid TemplateId { get; set; }
public string From { get; set; }
public string To { get; set; }
public string MailParameter { get; set; }
public string TableName { get; set; }
public string TableParameter { get; set; }
public string Attachment { get; set; }
public string AttachmentParameter { get; set; }
public bool SendStatus { get; set; }
public DateTime? SendTime { get; set; }
public string AwsMessageId { get; set; }
public string RelatedRecordId { get; set; }
public virtual ICollection<BackgroundWorker_MailQueueEvents> Events { get; set; }
public virtual BackgroundWorker_MailQueueTableFormat TableFormat { get; set; }
}