Skip to content

Instantly share code, notes, and snippets.

@umayeras
Last active November 12, 2021 10:54
Show Gist options
  • Save umayeras/b5514ad05220d006b9f5cec8433cdf8a to your computer and use it in GitHub Desktop.
Save umayeras/b5514ad05220d006b9f5cec8433cdf8a to your computer and use it in GitHub Desktop.
public class GetSampleByIdQuery : IRequest<ServiceResponse>
{
public int Id { get; set; }
public GetSampleByIdQuery(int id)
{
Id = id;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment