Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
PluginCategoryDto | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\App\Models\Data\Dto; |
6 | |
7 | use PeServer\Core\Database\DtoBase; |
8 | use PeServer\Core\Serialization\Mapping; |
9 | use PeServer\Core\Text; |
10 | |
11 | class PluginCategoryDto extends DtoBase |
12 | { |
13 | #region variable |
14 | |
15 | #[Mapping('plugin_category_id')] |
16 | public string $pluginCategoryId = Text::EMPTY; |
17 | |
18 | #[Mapping('display_name')] |
19 | public string $displayName = Text::EMPTY; |
20 | |
21 | public string $description = Text::EMPTY; |
22 | |
23 | #endregion |
24 | } |