mirror of
https://github.com/sstent/FitTrack_ReportGenerator.git
synced 2025-12-06 08:01:40 +00:00
9 lines
180 B
Python
9 lines
180 B
Python
from pydantic import BaseModel
|
|
from typing import Optional, Dict, Any
|
|
|
|
|
|
class ErrorResponse(BaseModel):
|
|
code: str
|
|
message: str
|
|
details: Optional[Dict[str, Any]] = None
|