Added 'user info' property to both classes.

This commit is contained in:
achmizs 2016-01-12 14:58:45 -05:00
parent e48560fdce
commit fb1a3e4395
2 changed files with 6 additions and 0 deletions

View File

@ -63,6 +63,9 @@
for the channel */ for the channel */
@property (readonly) NSArray *nicks; @property (readonly) NSArray *nicks;
/** Stores arbitrary user info. */
@property (strong) NSDictionary *userInfo;
/**************************/ /**************************/
#pragma mark - IRC commands #pragma mark - IRC commands
/**************************/ /**************************/

View File

@ -137,6 +137,9 @@
it is not. */ it is not. */
@property (readonly, getter=isConnected) bool connected; @property (readonly, getter=isConnected) bool connected;
/** Stores arbitrary user info. */
@property (strong) NSDictionary *userInfo;
/***************************/ /***************************/
#pragma mark - Class methods #pragma mark - Class methods
/***************************/ /***************************/