[DeckList] Move metadata into struct

This commit is contained in:
RickyRister 2025-11-30 00:51:01 -08:00
parent eab4d435f8
commit 84363262e4
3 changed files with 75 additions and 41 deletions

View file

@ -19,6 +19,11 @@ struct CardRef
{
return name == other.name && providerId == other.providerId;
}
bool isEmpty() const
{
return name.isEmpty() && providerId.isEmpty();
}
};
#endif // CARD_REF_H