aboutsummaryrefslogtreecommitdiff
path: root/classes/FeedEnclosure.php
blob: 6ef9bca5ecf095d0a478542af28bdec9b0511624 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
class FeedEnclosure {
	function __construct(
		public string $link = '',
		public string $type = '',
		public string $length = '',
		public string $title = '',
		public string $height = '',
		public string $width = '',
	) {}
}