1234567891011121314151617181920212223242526 |
- //
- // XYImageTextSelectCommonInfo.h
- // Starbuds
- //
- // Created by gy on 2020/7/9.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface XYImageTextSelectCommonInfo : NSObject
- @property (nonatomic, assign) BOOL isMulti;
- @property (nonatomic, assign) BOOL isSelect;
- @property (nonatomic, strong) NSString *imagePath1;
- @property (nonatomic, strong) NSString *imagePath2;
- @property (nonatomic, strong) NSString *text1;
- @property (nonatomic, strong) NSString *text2;
- @property (nonatomic, assign) float height;
- @property (nonatomic, strong) NSString *ID;
- @end
- NS_ASSUME_NONNULL_END
|