from pydantic import BaseModel
from typing import List

from models.item import Item

class Form(BaseModel):
  items: List[int]