TargetInfor.h 417 Bytes
//
//  TargetInfor.h
//  LifeLog
//
//  Created by Nguyen Van Phong on 8/13/17.
//  Copyright © 2017 PhongNV. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface TargetInfor : NSObject
@property (nonatomic) int target_step;
@property (nonatomic) int num_step;
@property (nonatomic) int remaining_step;
@property (nonatomic) float complete_percent;
-(id) initWithData : (NSDictionary *) dict;
@end