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