14 lines
198 B
PHP
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;
|
|
}
|
|
|
|
}
|
|
|