mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 11:02:07 +03:00
1f79fa6349
- LocationString on update - web app markers icons
20 lines
471 B
C#
20 lines
471 B
C#
using System.Collections.Generic;
|
|
|
|
namespace GoogleMaps.Models
|
|
{
|
|
public class MarkerList
|
|
{
|
|
public List<Marker> markers { get; set; }
|
|
}
|
|
|
|
public class Marker
|
|
{
|
|
public string lat { get; set; }
|
|
public string lng { get; set; }
|
|
public string html { get; set; }
|
|
public string label { get; set; }
|
|
public string icon { get; set; }
|
|
public string lastUpdated { get; set; }
|
|
}
|
|
}
|