web/lib/Tag.php
2024-11-08 16:34:21 -06:00

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;
}