mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-24 09:46:48 +00:00
19 lines
412 B
PHP
19 lines
412 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Models\Attachments;
|
|
|
|
use BushlanovDev\MaxMessengerBot\Enums\AttachmentType;
|
|
use BushlanovDev\MaxMessengerBot\Models\AbstractModel;
|
|
|
|
/**
|
|
* Represents a generic attachment received from the API.
|
|
*/
|
|
abstract readonly class AbstractAttachment extends AbstractModel
|
|
{
|
|
public function __construct(public AttachmentType $type)
|
|
{
|
|
}
|
|
}
|