Newer
Older
BlazorKafkaSignalR / save-points / 06-authentication-and-authorization / BlazingPizza.ComponentsLibrary / Map / Marker.cs
@Derek Comartin Derek Comartin on 1 Jun 2021 259 bytes Init
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; }
    }
}