diff --git a/src/MDResearchStatusSet.php b/src/MDResearchStatusSet.php new file mode 100644 index 0000000..bd51e42 --- /dev/null +++ b/src/MDResearchStatusSet.php @@ -0,0 +1,23 @@ + + */ +declare(strict_types = 1); + +/** + * Class containing available place types. + */ +final class MDResearchStatusSet extends MDValueSet { + + const RESEARCH_STATUS = [ + 'bad', + 'medium', + 'good', + ]; + +}