from pydantic import BaseModel
from typing import List

from models.item import Item

class Bundle(BaseModel):
  id: int
  count: int
  items: List[Item]
  type: str