TaskGroup.h 792 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
//
//  TaskGroup.h
//  redstar
//
//  Created by admin on 15/11/12.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface TaskGroup : NSObject
12 13 14 15
@property (nonatomic, strong) NSArray *answers;
@property (nonatomic, copy) NSString *category;
@property (nonatomic, assign) int questionCount;
@property (nonatomic, copy) NSString *ranking;
16

17 18 19 20 21
@property (nonatomic, assign) int reportCount;
@property (nonatomic, copy) NSString *reportTime;
@property (nonatomic, copy) NSString *score;
@property (nonatomic, copy) NSString *uuid;
@property (nonatomic, copy) NSString *weight;
22 23 24 25 26 27 28

@property (nonatomic, assign, getter = isOpened) BOOL opened;


+ (instancetype)taskGroupWithDict:(NSDictionary *)dict;
- (instancetype)initWithDict:(NSDictionary *)dict;
@end