forked from leftypol/leftypol
12 lines
222 B
PHP
12 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;
|
|
}
|