feat: work on collecting search requests

This commit is contained in:
Stevan Freeborn
2024-08-30 16:00:08 -05:00
parent eb0b6558bd
commit 409d4e339f
10 changed files with 143 additions and 20 deletions
@@ -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;
}