Skip to content

Instantly share code, notes, and snippets.

@ducmeit1
Created July 15, 2019 08:00
Show Gist options
  • Save ducmeit1/e87cdeba0f863a7a90c003bd724b0491 to your computer and use it in GitHub Desktop.
Save ducmeit1/e87cdeba0f863a7a90c003bd724b0491 to your computer and use it in GitHub Desktop.
public class GetUserDetailQuery : IRequest<UserDto>
{
public GetUserDetailQuery(int id) {
Id = id;
}
public int Id {get;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment