10 lines
134 B
Python
10 lines
134 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class TinyURL(BaseModel):
|
|
id: str
|
|
url: str
|
|
endless: bool
|
|
wallet: str
|
|
time: float
|