Files
aivideo/backend/app/modules/growth_rules/schema.py

10 lines
164 B
Python

from pydantic import BaseModel
class GrowthRulePayload(BaseModel):
enabled: bool
reward_points: int
min_consume_points: int = 0
remark: str = ""