Last active
December 17, 2021 22:23
-
-
Save mirsaeedi/05ee93b3f0c26a8c16d006b6241d7f95 to your computer and use it in GitHub Desktop.
This file contains 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 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