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.
3.01-QCM_MuscuMaths/Website/models/Admin.php

19 lines
295 B

<?php
class Administrator
{
private int $id;
private string $username;
public function __construct(int $id, string $username)
{
$this->id = $id;
$this->username = $username;
}
public function getUsername()
{
return $this->username;
}
}