Skip to content

Instantly share code, notes, and snippets.

@mirsaeedi
Last active December 17, 2021 22:23
Show Gist options
  • Save mirsaeedi/05ee93b3f0c26a8c16d006b6241d7f95 to your computer and use it in GitHub Desktop.
Save mirsaeedi/05ee93b3f0c26a8c16d006b6241d7f95 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; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment