aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/01 WEB Architektur/03 MVC-Beispiel/model/Book.php
Harald G. Mueller a2dc35ce82 muh
2022-02-24 09:37:43 +01: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;
}
}
?>