2026-01-09 07:13:59 +00:00

10 lines
234 B
PHP

<?php declare(strict_types=1);
namespace PrinsFrank\PdfParser\Document\Dictionary\DictionaryValue\Name;
enum IntentNameValue: string implements NameValue {
case All = 'All';
case View = 'View';
case Design = 'Design';
}