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