using System; namespace bsmd.AIS2Service { /// /// Helper class to report a ship position / entry into a zone (aka alarm connected to zone) /// 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; } public int VoyageDirection { get; set; } } }