1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-25 11:57:42 +02:00
ttrss/classes/feedenclosure.php

11 lines
127 B
PHP
Raw Normal View History

2013-05-01 15:04:57 +02:00
<?php
class FeedEnclosure {
public $link;
public $type;
public $length;
public $title;
2014-07-15 15:32:28 +02:00
public $height;
public $width;
2013-05-01 15:04:57 +02:00
}
2017-04-26 19:24:18 +02:00