uuid -> id

This commit is contained in:
Eden Kirin
2023-03-31 17:16:00 +02:00
parent 28a981980f
commit d45aca6c30
6 changed files with 103 additions and 21 deletions

View File

@ -27,7 +27,7 @@ class PositionDto(BaseModel):
class PlayerDto(BaseModel):
uuid: str
id: str
name: str
active: bool
position: PositionDto
@ -42,7 +42,7 @@ class DestinationDto(BaseModel):
class ProductDto(BaseModel):
name: str
uuid: str
id: str
description: Optional[str] = None
class StartGameRequestDto(BaseModel):
@ -75,4 +75,4 @@ class GetProductsResponse(BaseModel):
class PurchaseProductDto(BaseModel):
product_uuid: str
product_id: str