16 lines
251 B
PHP
16 lines
251 B
PHP
<?php
|
|
|
|
namespace Model;
|
|
|
|
class NewsSource {
|
|
public $title;
|
|
public $url;
|
|
public $show;
|
|
|
|
public function __construct($title, $url, $show) {
|
|
$this->title = $title;
|
|
$this->url = $url;
|
|
$this->show = $show;
|
|
}
|
|
}
|