Beispiel #1
0
 public Location(Telegram.Bot.Types.Location location)
 {
     Latitude  = location != null ? location.Latitude  : 0;
     Longitude = location != null ? location.Longitude : 0;
 }
Beispiel #2
0
 public Coordinates(Telegram.Bot.Types.Location loc)
 {
     latitude  = loc.Latitude;
     longitude = loc.Longitude;
 }