nextcloud-app-radio/db/stream.php
Jonas Heinrich 6f9f8e42c1 first commit
2016-11-17 23:07:22 +01:00

22 lines
394 B
PHP

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