mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-04 06:04:39 -04:00
11 lines
187 B
Python
11 lines
187 B
Python
from typing import Literal
|
|
from dataclasses import dataclass
|
|
|
|
from .metadataid import MetadataID
|
|
|
|
|
|
@dataclass
|
|
class Episode:
|
|
external_id: dict[str, MetadataID]
|
|
kind: Literal["episode"]
|