forked from bot/app
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 = ""
|
|
|