aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/01 WEB Architektur/OO MVC/mvc/model/Book.php
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +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;
}
}
?>