| 12345678910111213141516171819 |
- //
- // SideSlipModel.h
- // IBOSSMAP
- //
- // Created by apple on 2017/4/1.
- // Copyright © 2017年 apple. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface SideSlipModel : NSObject
- @property (copy, nonatomic) NSString *containerCellClass;
- @property (copy, nonatomic) NSString *regionTitle;
- @property (strong, nonatomic) NSArray *itemList;
- @property (assign, nonatomic) BOOL isShowAll;
- @property (strong, nonatomic) NSArray *selectedItemList;//hold selectedItem orderly
- @property (strong, nonatomic) NSDictionary *customDict;//hold custom Data;
- @end
|