Restructure into full project layout

This commit is contained in:
2026-06-16 23:06:16 -06:00
parent de4862b2d1
commit 57765496a6
74 changed files with 4441 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
from dataclasses import dataclass, field
@dataclass
class RawCardRow:
card_name: str = ""
set_code: str = ""
collector_number: str = ""
quantity: int = 0
foil_quantity: int = 0
import_source: str = ""
raw: dict = field(default_factory=dict)