2019-09-24 16:37:00 +02:00

14 lines
198 B
PHP

<?php
class Board {
public $id;
public $name;
public $permLevel;
function __construct($id, $name, $permLevel){
$this->id = $id;
$this->name = $name;
$this->permLevel = $permLevel;
}
}