8 lines
129 B
Python

from pydantic import BaseModel
from typing import List
from models.item import Item
class Form(BaseModel):
items: List[Item]