diff --git a/src/MDDataHistorySubjectsSet.php b/src/MDDataHistorySubjectsSet.php new file mode 100644 index 0000000..730820e --- /dev/null +++ b/src/MDDataHistorySubjectsSet.php @@ -0,0 +1,30 @@ + + */ +declare(strict_types = 1); + +/** + * Class containing available options for data history subjects. + */ +final class MDDataHistorySubjectsSet extends MDValueSet { + + const AVAILABLE_SUBJECTS = [ + 'appointment', + 'collection', + 'contact', + 'exhibition', + 'literature', + 'loan', + 'museum', + 'object', + 'podcast', + 'podcast_episode', + 'sammlung', + 'series', + 'user', + ]; + +}