13 lines
158 B
PHP
13 lines
158 B
PHP
<?php
|
|
|
|
namespace x13allegro\Api\Model;
|
|
|
|
final class Attachment
|
|
{
|
|
/** @var string */
|
|
public $type;
|
|
|
|
/** @var AttachmentFile */
|
|
public $file;
|
|
}
|