erp-platform/api/modules/Erp.MailQueue/Domain/Entities/BackgroundWorker_MailQueueEvents.cs

16 lines
467 B
C#
Raw Normal View History

2025-10-03 11:35:52 +00:00
using Volo.Abp.Domain.Entities.Auditing;
2025-05-06 06:45:49 +00:00
2025-11-11 19:49:52 +00:00
namespace Erp.MailQueue.Domain.Entities;
2025-05-06 06:45:49 +00:00
public partial class BackgroundWorker_MailQueueEvents : FullAuditedEntity<Guid>
{
public string AwsMessageId { get; set; }
public DateTime? EventDate { get; set; }
public string Event { get; set; }
public string MailAddress { get; set; }
public string ResponseDescription { get; set; }
2025-10-03 11:35:52 +00:00
public virtual BackgroundWorker_MailQueue MailQueue { get; set; }
2025-05-06 06:45:49 +00:00
}
2025-11-11 19:49:52 +00:00