aktuelle.kurse/oldies/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/01 WEB Architektur/OO MVC/mvc/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;
}
}
?>