mirror of
https://github.com/kurbezz/discord-bot.git
synced 2025-12-06 07:05:36 +01:00
11 lines
162 B
Python
11 lines
162 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class TwitchSerializer(BaseModel):
|
|
id: int
|
|
name: str
|
|
|
|
|
|
class StreamerSerializer(BaseModel):
|
|
twitch: TwitchSerializer
|