PrizeListModel.h 447 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
//
//  PrizeListModel.h
//  Lighting
//
//  Created by 曹云霄 on 2016/11/22.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "opple_objc_json_client.h"

@interface PrizeListModel : TOPrizeEntity


- (instancetype)initWithSuper:(TOPrizeEntity *)model;
曹云霄's avatar
曹云霄 committed
15 16 17 18

/**
 是否选中
 */
19 20
@property (nonatomic,assign) BOOL isSelect;

曹云霄's avatar
曹云霄 committed
21 22 23 24 25
/**
 是否允许选中
 */
@property (nonatomic,assign) BOOL isAllowSelect;

26
@end