diff --git a/Example/Classes/Models/User.h b/Example/Classes/Models/User.h index 99d973b..20cd5de 100644 --- a/Example/Classes/Models/User.h +++ b/Example/Classes/Models/User.h @@ -26,9 +26,9 @@ extern NSString * const kUserProfileImageDidLoadNotification; @interface User : NSObject -@property (readonly) NSUInteger userID; -@property (readonly) NSString *username; -@property (unsafe_unretained, readonly) NSURL *avatarImageURL; +@property (readonly, nonatomic) NSUInteger userID; +@property (readonly, nonatomic) NSString *username; +@property (readonly, nonatomic, unsafe_unretained) NSURL *avatarImageURL; - (id)initWithAttributes:(NSDictionary *)attributes;