26 lines
482 B
PHP
26 lines
482 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 $url_resolved;
|
|
protected $userId;
|
|
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'id' => $this->id,
|
|
'stationuuid' => $this->stationuuid,
|
|
'name' => $this->name,
|
|
'favicon' => $this->favicon,
|
|
'url_resolved' => $this->url_resolved
|
|
];
|
|
}
|
|
}
|