aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/03-WEB-Architektur/03 MVC-Beispiel/model/Book.php

16 lines
260 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
class Book {
public $title;
public $author;
public $description;
public function __construct($title, $author, $description)
{
$this->title = $title;
$this->author = $author;
$this->description = $description;
}
}
?>