mirror of
https://github.com/rommapp/muos-app.git
synced 2026-02-20 00:55:26 +08:00
22 lines
472 B
Python
22 lines
472 B
Python
from collections import namedtuple
|
|
|
|
Rom = namedtuple(
|
|
"Rom",
|
|
[
|
|
"id",
|
|
"name",
|
|
"fs_name",
|
|
"platform_slug",
|
|
"fs_extension",
|
|
"fs_size",
|
|
"fs_size_bytes",
|
|
"multi",
|
|
"languages",
|
|
"regions",
|
|
"revision",
|
|
"tags",
|
|
],
|
|
)
|
|
Collection = namedtuple("Collection", ["id", "name", "rom_count", "virtual"])
|
|
Platform = namedtuple("Platform", ["id", "display_name", "slug", "rom_count"])
|