1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // ZYSideSlipFilterManger.h
| // MIduo
| //
| // Created by 重庆迈尖科技有限公司 on 2018/8/7.
| // Copyright © 2018年 yeshi. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
| @interface ZYSideSlipFilterManger : NSObject
|
| @property (nonatomic, copy, nullable) NSString *minPrice;
| @property (nonatomic, copy, nullable) NSString *maxPrice;
|
| + (instancetype)shareinstance;
|
| @end
|
|