diff options
Diffstat (limited to 'megapixels/app/models/citations.py')
| -rw-r--r-- | megapixels/app/models/citations.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/megapixels/app/models/citations.py b/megapixels/app/models/citations.py new file mode 100644 index 00000000..b0e02fc7 --- /dev/null +++ b/megapixels/app/models/citations.py @@ -0,0 +1,17 @@ +from dataclasses import dataclass +from dataclasses import dataclass +from mashumaro import DataClassJSONMixin + +@dataclass +class Paper(DataClassJSONMixin): + key: str + dataset_name: str + paper_id: str + title: str + paper_type: str + year: int + paper_url: str = '' + loc: str = '' + loc_type: str = '' + lat: float = 0.0 + lng: float = 0.0
\ No newline at end of file |
