Skip to content

Instantly share code, notes, and snippets.

@justinAurand
Last active December 27, 2015 02:09
Show Gist options
  • Save justinAurand/7250657 to your computer and use it in GitHub Desktop.
Save justinAurand/7250657 to your computer and use it in GitHub Desktop.
Basic Class. Keeping SpoonDaddyOBC's brain fresh. So fresh and so clean, clean!
public class ResponseData
{
#region Fields
private int statusCode;
private string responseStream;
#endregion
#region Accessors
public int StatusCode
{
get { return statusCode; }
}
public string ResponseStream
{
get { return responseStream; }
}
#endregion
// Constructor
public ResponseData(int statusCode, string responseStream)
{
this.statusCode = statusCode;
this.responseStream = responseStream;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment