changed some model names to more accurately reflect the concerns were working with
This commit is contained in:
8
app/models/solution.py
Normal file
8
app/models/solution.py
Normal file
@ -0,0 +1,8 @@
|
||||
from pydantic import BaseModel
|
||||
from typing import List, Optional
|
||||
|
||||
from models.form import Form
|
||||
|
||||
class Solution(BaseModel):
|
||||
response_id: int
|
||||
forms: List[Form]
|
Reference in New Issue
Block a user