feat: work on setting up database

This commit is contained in:
Stevan Freeborn
2024-08-18 20:16:38 -05:00
parent f9e6e54db6
commit 3c809de5dc
19 changed files with 745 additions and 1 deletions
@@ -0,0 +1,13 @@
namespace SanctionsSearch.Worker.Models;
class Address
{
public int SdnId { get; set; }
public int Id { get; set; }
public string StreetAddress { get; set; } = string.Empty;
public string CityProvincePostal { get; set; } = string.Empty;
public string Country { get; set; } = string.Empty;
public string Remarks { get; set; } = string.Empty;
public virtual Sdn Sdn { get; set; } = default!;
}