about summary refs log tree commit diff
path: root/IRCStates/User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IRCStates/User.cs')
-rw-r--r--IRCStates/User.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/IRCStates/User.cs b/IRCStates/User.cs
index 5e18443..97abb15 100644
--- a/IRCStates/User.cs
+++ b/IRCStates/User.cs
@@ -9,15 +9,15 @@ namespace IRCStates
             Channels = new HashSet<string>();
         }
 
-        public string NickName { get; set; }
-        public string NickNameLower { get; set; }
+        public string NickName { get; private set; }
+        public string NickNameLower { get; private set; }
 
         public string UserName { get; set; }
         public string HostName { get; set; }
         public string RealName { get; set; }
         public string Account { get; set; }
         public string Away { get; set; }
-        public HashSet<string> Channels { get; set; }
+        public HashSet<string> Channels { get; private set; }
 
         public override string ToString()
         {