Skip to content

Instantly share code, notes, and snippets.

@mirsaeedi
Created December 17, 2021 22:38
Show Gist options
  • Save mirsaeedi/4f09d9d74e284c15c85a1351d95d8d4f to your computer and use it in GitHub Desktop.
Save mirsaeedi/4f09d9d74e284c15c85a1351d95d8d4f to your computer and use it in GitHub Desktop.
public class SearchRequest
{
public string Name { get; set; }
public int MaxResults { get; set; }
// Product Specific Filters
public string Category { get; set; }
public int MaxPrice { get; set; }
public int Price { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment