2024-08-18 20:16:38 -05:00
|
|
|
namespace SanctionsSearch.Worker.Models;
|
|
|
|
|
|
2024-08-20 23:42:20 -05:00
|
|
|
class Sdn : Entity
|
2024-08-18 20:16:38 -05:00
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public string Type { get; set; } = string.Empty;
|
|
|
|
|
public string Program { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public string CallSign { get; set; } = string.Empty;
|
|
|
|
|
public string VesselType { get; set; } = string.Empty;
|
|
|
|
|
public string Tonnage { get; set; } = string.Empty;
|
|
|
|
|
public string GrossRegisteredTonnage { get; set; } = string.Empty;
|
|
|
|
|
public string VesselFlag { get; set; } = string.Empty;
|
|
|
|
|
public string VesselOwner { get; set; } = string.Empty;
|
|
|
|
|
public string Remarks { get; set; } = string.Empty;
|
|
|
|
|
|
2024-08-23 08:32:34 -05:00
|
|
|
public virtual ICollection<Address> Addresses { get; set; } = [];
|
2024-08-18 20:16:38 -05:00
|
|
|
public virtual ICollection<Alias> Aliases { get; set; } = [];
|
2024-08-23 08:32:34 -05:00
|
|
|
public virtual ICollection<Comment> Comments { get; set; } = [];
|
2024-08-18 20:16:38 -05:00
|
|
|
}
|