/podcast/{overzicht,stream,download} toegevoegd

This commit is contained in:
2017-06-11 22:58:53 +02:00
parent f2ae355e72
commit 7ede0532ac
8 changed files with 1660 additions and 211 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Model;
class Program extends Model {
public $id;
public $name;
public $description;
// TODO: Implementeren
public $hosts;
public $schedule;
public $podcasts;
public function __construct($data) {
parent::__construct($data);
}
}