Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/core/elements.py
2021-04-27 23:01:17 +08:00

11 lines
No EOL
206 B
Python

from enum import Enum
from typing import Optional
from pydantic import BaseModel
from pydantic.fields import Field
class Target(BaseModel):
id: int
senderId: int
name: str
target_from: str