aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/00-Anwendungen-Beispiele-Uebungen/mvc/model/Book.php
Müller Harald 507e5da390 muh
2022-05-13 11:53:50 +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;
}
}
?>