namespace DocumentOperator.Domain.Models.ValueObjects;
///
/// Text markup annotation style (highlight, underline, strikeout)
/// Maps to DevExpress PdfTextMarkupAnnotationType
///
public enum TextMarkupStyle
{
///
/// Highlight text with background color
///
Highlight,
///
/// Underline text
///
Underline,
///
/// Strikeout text (strikethrough)
///
Strikeout
}