nextcloud-app-radio/db/stream.php
2017-01-08 09:36:13 +01:00

18 lines
274 B
PHP

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