14 lines
259 B
C#
14 lines
259 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|