mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 09:57:25 +08:00
14 lines
199 B
Python
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 = ""
|
|
|