38 lines
702 B
C#
38 lines
702 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bsmd.database
|
|
{
|
|
public class MessageCore
|
|
{
|
|
private Guid id;
|
|
|
|
|
|
#region Properties
|
|
|
|
public Guid Id { get { return this.id; } }
|
|
|
|
public string VisitId { get; set; }
|
|
|
|
public string TransitId { get; set; }
|
|
|
|
public string IMO { get; set; }
|
|
|
|
public string ENI { get; set; }
|
|
|
|
public string PoC { get; set; }
|
|
|
|
public string Portname { get; set; }
|
|
|
|
public DateTime ETA { get; set; }
|
|
|
|
public bool IsTransit { get; set; }
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|