mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
14 lines
242 B
PHP
14 lines
242 B
PHP
<?
|
|
/**
|
|
* @property string $Url
|
|
* @property string $UrlName
|
|
*/
|
|
class Tag{
|
|
use Traits\Accessor;
|
|
|
|
public int $TagId;
|
|
public string $Name;
|
|
public Enums\TagType $Type;
|
|
protected ?string $_UrlName = null;
|
|
protected ?string $_Url = null;
|
|
}
|