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