12 lines
217 B
Python
12 lines
217 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class CreateShortlinkResponse(BaseModel):
|
||
|
"""Response from creating a shortlink."""
|
||
|
|
||
|
key: str
|
||
|
|
||
|
url: str
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|