feat: work on collecting search requests
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user