38 lines
788 B
PHP
38 lines
788 B
PHP
<?php
|
|
|
|
namespace OCA\Radio\Db;
|
|
|
|
use JsonSerializable;
|
|
|
|
use OCP\AppFramework\Db\Entity;
|
|
|
|
class Station extends Entity implements JsonSerializable {
|
|
protected $stationuuid;
|
|
protected $name;
|
|
protected $favicon;
|
|
protected $urlresolved;
|
|
protected $bitrate;
|
|
protected $country;
|
|
protected $language;
|
|
protected $homepage;
|
|
protected $codec;
|
|
protected $tags;
|
|
protected $userId;
|
|
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'id' => $this->id,
|
|
'stationuuid' => $this->stationuuid,
|
|
'name' => $this->name,
|
|
'favicon' => $this->favicon,
|
|
'urlresolved' => $this->urlresolved,
|
|
'bitrate' => $this->bitrate,
|
|
'country' => $this->country,
|
|
'language' => $this->language,
|
|
'homepage' => $this->homepage,
|
|
'codec' => $this->codec,
|
|
'tags' => $this->tags
|
|
];
|
|
}
|
|
}
|