28 lines
605 B
C#
28 lines
605 B
C#
using System;
|
|
|
|
namespace bsmd.AIS2Service
|
|
{
|
|
/// <summary>
|
|
/// Helper class to report a ship position / entry into a zone (aka alarm connected to zone)
|
|
/// </summary>
|
|
public class ShipLocationReport
|
|
{
|
|
public DateTime Timestamp_First { get; set; }
|
|
|
|
public DateTime Timestamp_Last { get; set; }
|
|
|
|
public long MonitorZoneId { get; set; }
|
|
|
|
public int MMSI { get; set; }
|
|
|
|
public int? IMO { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Destination { get; set; }
|
|
|
|
public string NavStatus { get; set; }
|
|
|
|
}
|
|
}
|