LiteyukiBot/liteyuki/plugins/liteyuki_weather/models.py
2024-04-01 11:37:29 +08:00

14 lines
199 B
Python

from liteyuki.utils.data import LiteModel
class Location(LiteModel):
name: str = ""
id: str = ""
country: str = ""
class WeatherNow(LiteModel):
time: str = ""
city: str = ""