mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 16:47:48 +01:00
17 lines
220 B
PHP
17 lines
220 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace danog\MadelineProto;
|
||
|
|
||
|
/**
|
||
|
* Indicates a local file to upload.
|
||
|
*/
|
||
|
final class LocalFile
|
||
|
{
|
||
|
public function __construct(
|
||
|
public readonly string $file
|
||
|
) {
|
||
|
}
|
||
|
}
|