32 lines
707 B
C#
32 lines
707 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
|
|
}
|
|
}
|