chore: Remove obsolete Domain enums (DocumentOperationType, ProcessingStatus)

- These enums were part of initial scaffolding but never used
- Domain layer cleanup - removing unused code
This commit is contained in:
2026-07-20 11:55:55 +02:00
parent 8aff3138ff
commit f2e6ef0260
2 changed files with 0 additions and 19 deletions

View File

@@ -1,10 +0,0 @@
namespace DocumentOperator.Domain.Models.Enums;
public enum DocumentOperationType
{
Validate,
ExtractAttachments,
Concatenate,
ApplyStamp,
EmbedCertificate
}

View File

@@ -1,9 +0,0 @@
namespace DocumentOperator.Domain.Models.Enums;
public enum ProcessingStatus
{
Pending,
Processing,
Success,
Failed
}