From d8bfca1df6031da2500d346426c53ebb7d932796 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Tue, 27 Oct 2020 22:24:03 +0100 Subject: [PATCH] Add MDAppointmentRecordingSet --- src/MDAppointmentRecordingSet.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/MDAppointmentRecordingSet.php diff --git a/src/MDAppointmentRecordingSet.php b/src/MDAppointmentRecordingSet.php new file mode 100644 index 0000000..97cd8d6 --- /dev/null +++ b/src/MDAppointmentRecordingSet.php @@ -0,0 +1,17 @@ + + */ +declare(strict_types = 1); + +/** + * Class containing available units for weights, lengths etc. + */ +final class MDAppointmentRecordingSet extends MDValueSet { + + const AVAILABLE_RECORDING_TYPES = ['video']; + const EXTERNAL_SOURCES = ['Archive.org' => 'https://archive.org/details/']; + +}