mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
12 lines
276 B
Python
12 lines
276 B
Python
from . import base
|
|
from . import fields
|
|
|
|
|
|
class Location(base.TelegramObject):
|
|
"""
|
|
This object represents a point on the map.
|
|
|
|
https://core.telegram.org/bots/api#location
|
|
"""
|
|
longitude: base.Float = fields.Field()
|
|
latitude: base.Float = fields.Field()
|