13 行
313 B
Python
13 行
313 B
Python
from __future__ import annotations
|
|
from pydantic import BaseModel
|
|
from typing import Any
|
|
|
|
|
|
class CustomizeConfigSchema(BaseModel):
|
|
trust_stats: list[Any] = []
|
|
durations: list[Any] = []
|
|
activities: list[Any] = []
|
|
budgets: list[Any] = []
|
|
process: list[Any] = []
|
|
contact: dict[str, Any] = {}
|