GiGaMaskTime/GIGA/Modules/Mask/Exercises/Model/ExercisesModel.h

30 lines
751 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// ExercisesModel.h
// GIGA
//
// Created by lianxiang on 2018/9/11.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import <JSONModel/JSONModel.h>
#import "QustionAnswer.h"
//外层模型
@protocol QustionAnswer;//内层模型协议;
@interface ExercisesModel : JSONModel
@property (nonatomic,strong) NSArray<QustionAnswer>* answerList;
@property (nonatomic,assign) int questionType;
//排序
@property (nonatomic,assign) int sortNum;
@property (nonatomic,copy) NSString *remark;
@property (nonatomic,copy) NSString *question;
//optionsStyle:样式(单选或滑动) 1滑动2单选 3滑动带指示 4滑动渐变,
@property (nonatomic,assign) int optionsStyle;
@property (nonatomic,assign) int questionId;
@end