This repository has been archived on 2021-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
blazing-workshop/BlazingPizza.ComponentsLibrary/Map/Marker.cs

14 lines
259 B
C#
Raw Normal View History

2020-12-17 15:52:43 +00:00
namespace BlazingPizza.ComponentsLibrary.Map
{
public class Marker
{
public string Description { get; set; }
public double X { get; set; }
public double Y { get; set; }
public bool ShowPopup { get; set; }
}
}