24 lines
461 B
C#
24 lines
461 B
C#
// Copyright (c) 2023 - schick Informatik
|
|
// bsmd.AIS2Service.zone_alarm [GeoPoint.cs]: Daniel Schick
|
|
// Description: Single vertex of a zone
|
|
//
|
|
|
|
namespace bsmd.AIS2Service
|
|
{
|
|
#region class GeoPoint
|
|
|
|
public class GeoPoint : DBEntity
|
|
{
|
|
|
|
public GeoPoint(long id) : base(id)
|
|
{ }
|
|
|
|
public double Lat { get; set; }
|
|
public double Lon { get; set; }
|
|
|
|
public long MonitorZoneId { get; set; }
|
|
}
|
|
|
|
#endregion
|
|
}
|