from app.utils.schemas_utils import CustomModel

class TradingMonthCreate(CustomModel):
    group_id: int 
    store_a_trading_months: str 
    store_b_trading_months: str 
    rationale_for_store_a: str
    rationale_for_store_b: str

class TradingMonthResponce(CustomModel):
    trading_id : int 
    group_id: int 
    store_a_trading_months: str 
    store_b_trading_months: str 
    rationale_for_store_a: str
    rationale_for_store_b: str   