irt-service/app/models/bundle.py
2022-02-09 01:13:49 -05:00

11 lines
166 B
Python

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