feat(EmailOut): add Attachment1Bytes, Att1RelatedId and Att1RelType properties.
This commit is contained in:
parent
f70794b7b0
commit
b88106a38f
@ -73,7 +73,6 @@ namespace DigitalData.EmailProfilerDispatcher.Abstraction.Entities
|
||||
|
||||
[Column("ADDED_WHEN")]
|
||||
[DefaultValue("getdate()")]
|
||||
[NotMapped]
|
||||
public DateTime? AddedWhen { get; set; }
|
||||
|
||||
[Column("CHANGED_WHO", TypeName = "varchar(50)")]
|
||||
@ -89,5 +88,16 @@ namespace DigitalData.EmailProfilerDispatcher.Abstraction.Entities
|
||||
[Column("ERROR_MSG", TypeName = "varchar(900)")]
|
||||
[StringLength(900)]
|
||||
public string? ErrorMsg { get; set; }
|
||||
|
||||
[Column("ATTACHMENT1_BYTES", TypeName = "varbinary(max)")]
|
||||
public byte[]? Attachment1Bytes { get; set; }
|
||||
|
||||
[Column("ATT1_RELATED_ID")]
|
||||
public long? Att1RelatedId { get; set; }
|
||||
|
||||
[Column("ATT1_REL_TYPE", TypeName = "varchar(20)")]
|
||||
[StringLength(20)]
|
||||
public string? Att1RelType { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user