erp-platform/api/modules/Kurs.MailQueue/Domain/Entities/BackgroundWorker_MailQueue.cs
2025-10-03 14:35:52 +03:00

22 lines
849 B
C#

using Volo.Abp.Domain.Entities.Auditing;
namespace Kurs.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; }
}