nextcloud-app-radio/db/station.php
2017-02-21 17:57:35 +01:00

21 lines
348 B
PHP

<?php
namespace OCA\Radio\Db;
use JsonSerializable;
use OCP\AppFramework\Db\Entity;
class Station extends Entity implements JsonSerializable {
protected $stationid;
protected $userId;
public function jsonSerialize() {
return [
'id' => $this->id,
'stationid' => $this->stationid,
];
}
}