2017-03-15 22:07:17 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BusinessLogic\Attachments;
|
|
|
|
|
|
|
|
|
|
|
|
class CreateAttachmentModel {
|
|
|
|
/* @var $savedName string */
|
|
|
|
public $savedName;
|
|
|
|
|
|
|
|
/* @var $displayName string */
|
|
|
|
public $displayName;
|
|
|
|
|
|
|
|
/* @var $id int */
|
|
|
|
public $fileSize;
|
|
|
|
|
2017-03-17 22:05:51 -04:00
|
|
|
/* @var $attachmentContents string */
|
2017-03-15 22:07:17 -04:00
|
|
|
public $attachmentContents;
|
2017-04-05 22:13:37 -04:00
|
|
|
|
|
|
|
/* @var $isEditing bool */
|
|
|
|
public $isEditing;
|
2017-03-15 22:07:17 -04:00
|
|
|
}
|