MemberObject.h 570 Bytes
//
//  MemberObject.h
//  LifeLog
//
//  Created by nvtu on 8/18/17.
//  Copyright © 2017 PhongNV. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface MemberObject : NSObject

@property (nonatomic) int userID;
@property (nonatomic) int gender;

@property (nonatomic, strong) NSString * userName;
@property (nonatomic, strong) NSString * nickName;
@property (nonatomic, strong) NSString * avatar;

@property (nonatomic, strong) NSDate   * joinDate;
@property (nonatomic, strong) NSDate   * birthDay;

-(id) initWithData : (NSDictionary *) dict;

@end