Restructure into full project layout
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user