RankingObject.h 519 Bytes
//
//  RankingObject.h
//  LifeLog
//
//  Created by nvtu on 8/26/17.
//  Copyright © 2017 PhongNV. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface RankingObject : NSObject

@property (nonatomic) int userID;
@property (nonatomic) int rank;
@property (nonatomic) int steps;
@property (nonatomic) int time;
@property (nonatomic) float distance;

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

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

@end