LiteyukiBot/liteyuki/plugins/liteyuki_weather/models.py

14 lines
199 B
Python
Raw Normal View History

from liteyuki.utils.data import LiteModel
2024-04-01 03:37:29 +00:00
class Location(LiteModel):
name: str = ""
id: str = ""
country: str = ""
class WeatherNow(LiteModel):
time: str = ""
city: str = ""