2025-05-26 00:42:26 +02:00

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