diff --git a/src/MDConservationStatusSet.php b/src/MDConservationStatusSet.php new file mode 100644 index 0000000..6d06489 --- /dev/null +++ b/src/MDConservationStatusSet.php @@ -0,0 +1,21 @@ + + */ +declare(strict_types = 1); + +/** + * Class containing available units for weights, lengths etc. + */ +final class MDConservationStatusSet extends MDValueSet { + + const STATUS_LEVELS = [ + 1 => '', + 34 => 'markedBad', + 67 => 'markedMedium', + 100 => 'markedGood' + ]; + +}