blob: cbf4e46eec9bf7ec41c7ce2c650009e7441488c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// User.h
// Juick
//
// Created by Vitaly on 01.02.14.
// Copyright (c) 2014 com.juick. All rights reserved.
//
@import Foundation;
@interface User : NSObject
@property (nonatomic, strong) NSString *uname;
@property (nonatomic, strong) NSString *uid;
@property (nonatomic, strong) NSString *avatar;
@property (nonatomic) NSInteger unreadCount;
+ (User *) fromJSON:(NSDictionary *)jsonData;
+ (void) throwUnableToLogin:(UIViewController *)view error:(NSError *)error;
@end
|