11 lines
166 B
Python
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
|