//// ICRQestion.h// XFFruit//// Created by Lili Wang on 15/5/29.// Copyright (c) 2015年 Xummer. All rights reserved.//#import "IBTModel.h"typedefNS_ENUM(NSUInteger,ICRQestionType){kICRQestionTypeSingleSel=0,kICRQestionTypeMultipleSel,kICRQestionTypeReply,kICRQestionTypeScore,kICRQestionTypeStoreInv,kICRQestionTypeSpeciesInv,kICRQestionTypeStarNum,};@interfaceICRQuestion:IBTModel@property(copy,nonatomic)NSString*qID;@property(assign,nonatomic)NSUIntegerlineNo;@property(assign,nonatomic)NSIntegertype;@property(copy,nonatomic)NSString*category;@property(copy,nonatomic)NSString*title;@property(assign,nonatomic)NSUIntegerstar;@property(assign,nonatomic)NSUIntegerscoreFrom;@property(assign,nonatomic)NSUIntegerscoreTo;@property(assign,nonatomic)BOOLwritingReply;@property(assign,nonatomic)BOOLpictureReply;@property(assign,nonatomic)BOOLrecordReply;@property(strong,nonatomic)NSArray*details;@property(strong,nonatomic)NSArray*scoreType;@end