forked from leftypol/leftypol
13 lines
222 B
PHP
13 lines
222 B
PHP
|
<?php
|
||
|
namespace Vichan\Data;
|
||
|
|
||
|
|
||
|
class OembedResponse {
|
||
|
public string $type;
|
||
|
public ?string $title;
|
||
|
public ?int $cache_age;
|
||
|
public ?string $thumbnail_url;
|
||
|
public ?int $thumbnail_width;
|
||
|
public ?int $thumbnail_height;
|
||
|
}
|