Initial code changes to insert/update Ebook records

This commit is contained in:
Mike Colagrosso 2024-04-20 23:21:48 -06:00 committed by Alex Cabal
parent 073f138c47
commit 63d411a2e6
10 changed files with 531 additions and 28 deletions

View file

@ -1,12 +1,13 @@
<?
/**
* @property string $Url
* @property string $UrlName
*/
class Tag{
use Traits\Accessor;
public int $TagId;
public string $Name;
public string $UrlName;
protected ?string $_UrlName = null;
protected ?string $_Url = null;
}