TargetInfor.h
471 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, strong) NSString *target_step;
@property (nonatomic, strong) NSString *num_step;
@property (nonatomic, strong) NSString *remaining_step;
@property (nonatomic, strong) NSString *complete_percent;
-(id) initWithData : (NSDictionary *) dict;
@end