mirror of
https://github.com/danog/MadelineProto.git
synced 2025-01-11 12:28:16 +01:00
14 lines
254 B
PHP
14 lines
254 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace danog\MadelineProto\EventHandler\Media;
|
||
|
|
||
|
use danog\MadelineProto\EventHandler\Media;
|
||
|
|
||
|
/**
|
||
|
* Represents a generic audio file.
|
||
|
*/
|
||
|
abstract class AbstractAudio extends Media
|
||
|
{
|
||
|
public readonly int $duration;
|
||
|
}
|