You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ScienceQuest/project/src/model/metier/Sexe.php

25 lines
372 B

<?php
namespace model;
class Sexe
{
private int $id;
private string $libelle;
public function __construct(int $id, string $libelle)
{
$this->id=$id;
$this->libelle=$libelle;
}
public function getId():int
{
return $this->id;
}
public function getLibelle(): string
{
return $this->libelle;
}
}