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.
ProjetPHP/business/User.php

17 lines
341 B

<?php
class User{
private string $login; // botar um id no final se der tempo
function __construct($login) {
$this->login = $login;
}
function get_login() {
return $this->login;
}
function set_login($login) {
$this->login = $login;
}
}
?>