From 381cee4b421d09bc3f28c871a79f2a67af6f7edc Mon Sep 17 00:00:00 2001 From: Roman Truba Date: Thu, 29 Oct 2015 19:15:47 +0300 Subject: [PATCH] Authorization result helper class --- library/Source/VKAuthorizationResult.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/library/Source/VKAuthorizationResult.h b/library/Source/VKAuthorizationResult.h index 08bf067..ba0395e 100644 --- a/library/Source/VKAuthorizationResult.h +++ b/library/Source/VKAuthorizationResult.h @@ -6,8 +6,10 @@ // Copyright © 2015 VK. All rights reserved. // -#import +#import "VKAccessToken.h" +#import "VKError.h" @interface VKAuthorizationResult : VKObject - +@property (nonatomic, strong) VKAccessToken *token; +@property (nonatomic, strong) VKError *error; @end