10 lines
157 B
Python
10 lines
157 B
Python
from pydantic import BaseModel
|
|
from typing import List
|
|
|
|
from models.form import Form
|
|
|
|
|
|
class Solution(BaseModel):
|
|
response_id: int
|
|
forms: List[Form]
|