Last active
December 27, 2015 02:09
-
-
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!
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 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