mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
16 lines
279 B
Python
16 lines
279 B
Python
from __future__ import annotations
|
|
|
|
from ..utils import Model
|
|
from .metadataid import MetadataId
|
|
|
|
|
|
class Studio(Model):
|
|
slug: str
|
|
external_id: dict[str, MetadataId]
|
|
translations: dict[str, StudioTranslation] = {}
|
|
|
|
|
|
class StudioTranslation(Model):
|
|
name: str
|
|
logo: str | None
|