aktuelle.kurse/oldies/m133/4_Modulinhalte_und_Uebungen/03-WEB-Architektur/03 MVC-Beispiel/model/Book.php
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +02:00

16 lines
260 B
PHP

<?php
class Book {
public $title;
public $author;
public $description;
public function __construct($title, $author, $description)
{
$this->title = $title;
$this->author = $author;
$this->description = $description;
}
}
?>