2016-11-17 22:07:22 +00:00
|
|
|
<?php
|
|
|
|
namespace OCA\Radio\Db;
|
|
|
|
|
|
|
|
use JsonSerializable;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Db\Entity;
|
|
|
|
|
|
|
|
class Stream extends Entity implements JsonSerializable {
|
|
|
|
|
|
|
|
protected $userId;
|
|
|
|
|
|
|
|
public function jsonSerialize() {
|
|
|
|
return [
|
2017-01-08 08:36:13 +00:00
|
|
|
'id' => $this->id
|
2016-11-17 22:07:22 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|