14 lines
225 B
PHP
14 lines
225 B
PHP
|
<?php
|
||
|
|
||
|
namespace BusinessLogic\Statuses;
|
||
|
|
||
|
|
||
|
class StatusLanguage {
|
||
|
public $language;
|
||
|
public $text;
|
||
|
|
||
|
function __construct($language, $text) {
|
||
|
$this->language = $language;
|
||
|
$this->text = $text;
|
||
|
}
|
||
|
}
|