Add MDAppointmentRecordingSet

This commit is contained in:
Joshua Ramon Enslin 2020-10-27 22:24:03 +01:00 committed by Stefan Rohde-Enslin
parent a300538188
commit d8bfca1df6
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -0,0 +1,17 @@
<?PHP
/**
* Contains a class for controlling the list of available recording types and sources.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
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/'];
}