feat(stamp): Add Domain value objects for stamp operations

- Add StampType enum (Text, Image, Predefined)
- Add PredefinedStampType enum (CONFIDENTIAL, APPROVED, DRAFT, etc.)
- Add StampPlacement enum (Foreground, Background)
- All enums in DocumentOperator.Domain namespace
This commit is contained in:
2026-07-21 14:38:22 +02:00
parent 61b11fc216
commit e2bec710e0
3 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace DocumentOperator.Domain.Models.ValueObjects;
/// <summary>
/// Specifies whether the stamp should appear in the foreground (on top of content) or background (behind content).
/// </summary>
public enum StampPlacement
{
/// <summary>
/// Stamp appears on top of existing page content.
/// </summary>
Foreground,
/// <summary>
/// Stamp appears behind existing page content (watermark effect).
/// </summary>
Background
}