Merge pull request #4045 from lambdageek/bug-47867
[mono.git] / mcs / class / System.Web / System.Web.Mail / SmtpResponse.cs
index b70fc34edea9c42200fd81d46c384dd341554a4c..69b5f93f432a663211022bd1a33eee46c617c7db 100644 (file)
@@ -33,9 +33,9 @@ namespace System.Web.Mail {
     /// this class represents the response from the smtp server
     internal class SmtpResponse {
        
-       private string rawResponse;
-       private int statusCode;
-       private string[] parts;
+       string rawResponse;
+       int statusCode;
+       string[] parts;
 
        /// use the Parse method to create instances
        protected SmtpResponse() {}