This commit is contained in:
GuillaumeH-Cci 2026-02-20 11:14:45 +01:00
parent 747bc76de2
commit e6c64912c3
8 changed files with 203 additions and 334 deletions

View file

@ -7,11 +7,11 @@ require_once("mother_entity.php");
class Project extends Entity{
private int $_id;
private string $_title;
private string $_description;
private string $_thumbnail;
private string $_content;
private ?int $_id = null;
private string $_title = "";
private string $_description = "";
private string $_thumbnail = "";
private string $_content = "";
private string $_creation_date;
private string $_status;
private int $_user;