Add accounting bit to Collections table

This commit is contained in:
Alex Cabal 2024-12-14 00:02:21 -06:00
parent 79fdc8c20f
commit cb1cfc8c21
2 changed files with 3 additions and 0 deletions

View file

@ -11,6 +11,8 @@ class Collection{
public string $Name;
public string $UrlName;
public ?Enums\CollectionType $Type = null;
public bool $ArePlaceholdersComplete; /** Has a producer verified that every possible item in this `Collection` been added to our database? */
protected ?string $_Url = null;