changed some model names to more accurately reflect the concerns were working with

This commit is contained in:
Josh Burman
2021-09-10 14:04:21 -04:00
parent 2906141a8f
commit 43d2088f13
3 changed files with 7 additions and 7 deletions

8
app/models/solution.py Normal file
View 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]