mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 06:07:29 +02:00
10 lines
198 B
PHP
10 lines
198 B
PHP
<?php
|
|
class FeedEnclosure {
|
|
public string $link = '';
|
|
public string $type = '';
|
|
public string $length = '';
|
|
public string $title = '';
|
|
public string $height = '';
|
|
public string $width = '';
|
|
}
|