18 lines
332 B
PHP
Raw Normal View History

<?php
namespace BusinessLogic\Attachments;
class CreateAttachmentModel {
/* @var $savedName string */
public $savedName;
/* @var $displayName string */
public $displayName;
/* @var $id int */
public $fileSize;
/* @var $attachmentContents string [base64-encoded] */
public $attachmentContents;
}