from pydantic import BaseModel from fooder.model.base import ObjModelMixin from fooder.model.entry import Grams from fooder.model.product import ProductModel class PresetEntryModel(ObjModelMixin, BaseModel): grams: Grams product_id: int preset_id: int product: ProductModel protein: float carb: float fat: float fiber: float calories: float