You've already forked hotpocket
This commit is contained in:
13
services/backend/hotpocket_backend/apps/ui/dto/saves.py
Normal file
13
services/backend/hotpocket_backend/apps/ui/dto/saves.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import annotations
|
||||
|
||||
import pydantic
|
||||
|
||||
from hotpocket_common.constants import AssociationsSearchMode
|
||||
|
||||
from .base import BrowseParams as BaseBrowseParams
|
||||
|
||||
|
||||
class BrowseParams(BaseBrowseParams):
|
||||
limit: int = pydantic.Field(default=12)
|
||||
mode: AssociationsSearchMode = pydantic.Field(default=AssociationsSearchMode.DEFAULT)
|
||||
Reference in New Issue
Block a user