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
3declare(strict_types=1);
4
5namespace PeServer\App\Models\Data\Dto;
6
7use PeServer\Core\Database\DtoBase;
8use PeServer\Core\Serialization\Mapping;
9use PeServer\Core\Text;
10
11class 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}