diff options
Diffstat (limited to 'ATRI/plugins/anti_effort/models.py')
-rw-r--r-- | ATRI/plugins/anti_effort/models.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ATRI/plugins/anti_effort/models.py b/ATRI/plugins/anti_effort/models.py new file mode 100644 index 0000000..928c4ec --- /dev/null +++ b/ATRI/plugins/anti_effort/models.py @@ -0,0 +1,10 @@ +from pydantic import BaseModel + + +class AntiEffortUserModel(BaseModel): + user_id: int + w_user_name: str + w_user_id: str + waka_url: str + last_7_days_count: float + recent_count: float |