Renamed models to dto and create services folder

This commit is contained in:
dylan
2025-04-12 01:24:57 +02:00
parent d146b5b62f
commit 464755edf9
6 changed files with 0 additions and 0 deletions

17
dto/requests.py Normal file
View File

@ -0,0 +1,17 @@
from dataclasses import dataclass
from typing import Literal
from uuid import UUID
@dataclass
class GameStartRequest:
"""Request model for starting a new game."""
player_name: str
@dataclass
class GameDecisionRequest:
"""Request model for making a game decision."""
decision: Literal["Accept", "Reject"]
session_id: UUID
client_id: UUID