- ErrorCode: All error codes from legacy system (10001-10010) - ProcessType: Email process types (ProcessManager, AttachmentSniffer, ZugFeRDParser) - AuthenticationType: Authentication methods (UsernamePassword, OAuth2) - EmailStatus: Email processing status tracking - AttachmentStatus: Attachment validation status These enums maintain compatibility with the legacy VB.NET system.
10 lines
149 B
C#
10 lines
149 B
C#
namespace DigitalData.EmailProfiler.Domain.Enums;
|
|
|
|
public enum AttachmentStatus
|
|
{
|
|
Pending = 1,
|
|
Valid = 2,
|
|
Corrupt = 3,
|
|
Skipped = 4
|
|
}
|