// // Instructions.h // Lighting // // Created by 曹云霄 on 2016/12/6. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #ifndef Instructions_h #define Instructions_h // 所有NSDecimalNumber 改成 NSNumber // @property (nonatomic, strong) NSArray *eCards 改成 @property (nonatomic, strong) NSMutableArray *eCards; // 新增 @class CustomStudyEntity; // 新增 @class CustomTOStudyTopicOptionEntity; // 新增 @protocol CustomStudyEntity @end // 新增 @protocol CustomTOStudyTopicOptionEntity @end // @property (nonatomic, strong) NSArray *studyTasks 改成 @property (nonatomic, strong) NSArray *studyTasks; // @property (nonatomic, strong) NSArray *options 改成 @property (nonatomic, strong) NSMutableArray *options; // @property (nonatomic, copy) NSString *content 改成 @property (nonatomic, copy) NSString *contentString // @property (nonatomic, strong) NSArray *topics; 改成 @property (nonatomic, strong) NSArray *topics; // @property (nonatomic, strong) NSArray *options; 改成 @property (nonatomic, strong) NSMutableArray *options; // @property (nonatomic, strong) NSArray *forumTopicEntity; 改成 @property (nonatomic, strong) NSArray *forumTopicEntity; #endif /* Instructions_h */