mirror of
https://github.com/kaaninchen/Gleiswechsel.git
synced 2026-09-17 16:52:47 +00:00
56 lines
725 B
Python
56 lines
725 B
Python
# generated by datamodel-codegen:
|
|
# filename: de.yaml
|
|
# timestamp: 2026-08-17T18:44:37+00:00
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class LongName:
|
|
train_from: str
|
|
train_via: str
|
|
|
|
|
|
@dataclass
|
|
class Channel:
|
|
long_name: LongName
|
|
|
|
|
|
@dataclass
|
|
class Footer:
|
|
notice: str
|
|
|
|
|
|
@dataclass
|
|
class Info:
|
|
description: str
|
|
via: str
|
|
via_and: str
|
|
next_stop: str
|
|
|
|
|
|
@dataclass
|
|
class EndOfConnection:
|
|
message: str
|
|
|
|
|
|
@dataclass
|
|
class Announcement:
|
|
title: str
|
|
end_of_connection: EndOfConnection
|
|
|
|
|
|
@dataclass
|
|
class Embeds:
|
|
footer: Footer
|
|
info: Info
|
|
announcement: Announcement
|
|
|
|
|
|
@dataclass
|
|
class Model:
|
|
channel: Channel
|
|
embeds: Embeds
|