nextcloud-app-radio/lib/Db/Station.php

26 lines
480 B
PHP
Raw Normal View History

2020-10-30 20:16:27 +00:00
<?php
namespace OCA\Radio\Db;
use JsonSerializable;
use OCP\AppFramework\Db\Entity;
class Station extends Entity implements JsonSerializable {
protected $stationuuid;
protected $name;
protected $favicon;
2020-11-07 09:26:41 +00:00
protected $urlresolved;
2020-10-30 20:16:27 +00:00
protected $userId;
public function jsonSerialize(): array {
return [
'id' => $this->id,
'stationuuid' => $this->stationuuid,
'name' => $this->name,
'favicon' => $this->favicon,
2020-11-07 09:26:41 +00:00
'url_resolved' => $this->urlresolved
2020-10-30 20:16:27 +00:00
];
}
}