From fb1a3e4395fcc2100c14600695bb581b3b3ef9b4 Mon Sep 17 00:00:00 2001 From: achmizs Date: Tue, 12 Jan 2016 14:58:45 -0500 Subject: [PATCH] Added 'user info' property to both classes. --- IRCClient/IRCClientChannel.h | 3 +++ IRCClient/IRCClientSession.h | 3 +++ 2 files changed, 6 insertions(+) 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 /***************************/