using IRaCIS.Core.Domain.Share;
namespace IRaCIS.Core.Domain.Models;
[Comment("邮件附件日志")]
[Table("EmailAttachmentLog")]
public class EmailAttachmentLog : BaseFullAuditEntity
{
[JsonIgnore]
[ForeignKey("EmailLogId")]
public EmailLog EmailLog { get; set; }
///
/// 邮件Id
///
public Guid EmailLogId { get; set; }
///
/// 附件名称
///
public string AttachmentName { get; set; }
///
/// 附件路径
///
public string AttachmentPath { get; set; }
}