from pydantic import Field
from app.utils.schemas_utils import CustomModel

class PreValidation(CustomModel):
    merchandise : str | None = Field(default=None)
    
class GetCategory(CustomModel):
    no_of_cats_l : int 
    no_of_cats_m : int
    no_of_cats_h : int  
    
class PreValidation(CustomModel):
    store_format_type: str
    merchandise: str
    merchandise_value: str
    
    
class PreSelectedCategoryCreate(CustomModel):
    # pre_id : int 
    # low_value : int 
    # medium_value : int 
    # high_value : int 
    group_id : int
