MCPcopy Create free account
hub / github.com/dbunt1tled/python-fast-api / DTO

Class DTO

src/core/dto/dto.py:5–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4
5class DTO(BaseModel):
6 model_config = ConfigDict(
7 extra="ignore",
8 alias_generator=AliasGenerator(
9 alias=to_camel,
10 validation_alias=to_camel,
11 serialization_alias=to_camel,
12 ),
13 populate_by_name=True,
14 )
15 include: str | None = None
16
17
18class Message(DTO):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected