diff --git a/src/SchemaBuilder/Attributes/SchemaDocument.php b/src/SchemaBuilder/Attributes/SchemaDocument.php new file mode 100644 index 0000000..b49adeb --- /dev/null +++ b/src/SchemaBuilder/Attributes/SchemaDocument.php @@ -0,0 +1,27 @@ +MaximumSize = $maxSize; + $this->Comment = $comment; + $this->MIMEType = $mimeType; + parent::__construct("SchemaDocument", [], []); + } +} diff --git a/src/SchemaBuilder/Attributes/SchemaDocumentField.php b/src/SchemaBuilder/Attributes/SchemaDocumentField.php new file mode 100644 index 0000000..c02926a --- /dev/null +++ b/src/SchemaBuilder/Attributes/SchemaDocumentField.php @@ -0,0 +1,30 @@ +Existence = $existence; + $this->Comment = $comment; + $this->ValidSchemas = $validSchemas; + parent::__construct("SchemaDocumentField", [], []); + } + +}