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

11 lines
206 B
Python
Raw Normal View History

from enum import Enum
from typing import Optional
from pydantic import BaseModel
from pydantic.fields import Field
class Target(BaseModel):
id: int
2021-04-27 15:01:17 +00:00
senderId: int
name: str
target_from: str