10 lines
164 B
Python
10 lines
164 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class GrowthRulePayload(BaseModel):
|
|
enabled: bool
|
|
reward_points: int
|
|
min_consume_points: int = 0
|
|
remark: str = ""
|
|
|