diff --git a/IRCClient/IRCClientChannel.h b/IRCClient/IRCClientChannel.h index fb03a94..2f446b6 100644 --- a/IRCClient/IRCClientChannel.h +++ b/IRCClient/IRCClientChannel.h @@ -63,6 +63,9 @@ for the channel */ @property (readonly) NSArray *nicks; +/** Stores arbitrary user info. */ +@property (strong) NSDictionary *userInfo; + /**************************/ #pragma mark - IRC commands /**************************/ diff --git a/IRCClient/IRCClientSession.h b/IRCClient/IRCClientSession.h index dc30a6e..3fe0aac 100644 --- a/IRCClient/IRCClientSession.h +++ b/IRCClient/IRCClientSession.h @@ -137,6 +137,9 @@ it is not. */ @property (readonly, getter=isConnected) bool connected; +/** Stores arbitrary user info. */ +@property (strong) NSDictionary *userInfo; + /***************************/ #pragma mark - Class methods /***************************/