Created
December 17, 2021 22:38
-
-
Save mirsaeedi/4f09d9d74e284c15c85a1351d95d8d4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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