blob: deea41a58f267afa3cef7111bc92f369fe65b696 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// 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, strong) NSString *token;
@property (nonatomic, strong) NSString *uri;
@property (nonatomic) NSInteger unreadCount;
@property (nonatomic, assign) bool premium;
+ (User *) fromJSON:(NSDictionary *)jsonData;
@end
|