feat: work on setting up database
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
namespace SanctionsSearch.Worker.Models;
|
||||
|
||||
class Sdn
|
||||
{
|
||||
public int Id { get; set; }
|
||||
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;
|
||||
|
||||
public virtual ICollection<Alias> Aliases { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user