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