8 lines
98 B
Python
8 lines
98 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Prompt(BaseModel):
|
|
id: int
|
|
name: str
|
|
text: str
|