diff --git a/src/MDUnitsSet.php b/src/MDUnitsSet.php new file mode 100644 index 0000000..aa0c47e --- /dev/null +++ b/src/MDUnitsSet.php @@ -0,0 +1,16 @@ + + */ + +/** + * Class containing available units for weights, lengths etc. + */ +class MDUnitsSet { + + const UNITS_LENGTH = ['', 'm', 'dm', 'cm', 'mm']; + const UNITS_WEIGHT = ['', 't', 'kg', 'g']; + +}