Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created September 3, 2019 11:58
Show Gist options
  • Save ntakouris/9047fbf3372975d96ebc0510adf1782a to your computer and use it in GitHub Desktop.
Save ntakouris/9047fbf3372975d96ebc0510adf1782a to your computer and use it in GitHub Desktop.
public class Response<T>
{
public Response() {}
public Response(T response)
{
Data = response;
}
public T Data { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment