13 lines
407 B
C#
13 lines
407 B
C#
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!;
|
|
} |