Skip to content

Instantly share code, notes, and snippets.

@mirsaeedi
Created December 17, 2021 22:46
Show Gist options
  • Save mirsaeedi/66b2f4916b0349cc72da6fe984b6fe0f to your computer and use it in GitHub Desktop.
Save mirsaeedi/66b2f4916b0349cc72da6fe984b6fe0f to your computer and use it in GitHub Desktop.
public class SearchEmployeeRequest
{
public string Name { get; set; }
public int MaxResults { get; set; }
}
public class SearchProductRequest
{
public string Name { get; set; }
public int MaxResults { get; set; }
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