mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -04:00
16 lines
281 B
Python
16 lines
281 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, StudioTranslations] = {}
|
|
|
|
|
|
class StudioTranslations(Model):
|
|
name: str
|
|
logo: str | None
|