Change tag type from string to enum (TagType)

This commit is contained in:
Mike Colagrosso 2024-10-03 13:39:33 -06:00 committed by Alex Cabal
parent 59eee3cc57
commit 5b1bb2a9f0
6 changed files with 26 additions and 16 deletions

View file

@ -8,7 +8,7 @@ class Tag{
public int $TagId;
public string $Name;
public string $Type;
public TagType $Type;
protected ?string $_UrlName = null;
protected ?string $_Url = null;
}