mirror of
https://github.com/Lukas0025/YAGS.git
synced 2025-04-04 06:51:33 +01:00
14 lines
498 B
PHP
14 lines
498 B
PHP
<?php
|
|
namespace DAL;
|
|
|
|
class dataType extends \wsos\database\core\row {
|
|
public \wsos\database\types\text $name; // MSR, TELEMETRY, ...
|
|
public \wsos\database\types\text $description;
|
|
|
|
function __construct($id = null, $name = "", $description = "") {
|
|
parent::__construct($id);
|
|
$this->name = new \wsos\database\types\text($name);
|
|
$this->description = new \wsos\database\types\text($description);
|
|
}
|
|
}
|
|
?>
|