21 lines
227 B
PHP
Raw Normal View History

2017-01-31 22:26:46 -05:00
<?php
namespace BusinessLogic\Tickets;
class Attachment {
/**
* @var int
*/
public $id;
/**
* @var string
*/
public $fileName;
/**
* @var string
*/
public $savedName;
}