11 lines
377 B
C#
11 lines
377 B
C#
namespace SanctionsSearch.Worker.Models;
|
|
|
|
class SearchRequest
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public string City { get; set; } = string.Empty;
|
|
public string State { get; set; } = string.Empty;
|
|
public string Zip { get; set; } = string.Empty;
|
|
public string Country { get; set; } = string.Empty;
|
|
} |