1234567891011121314151617181920212223242526 |
- //
- // ZBTypeModel.h
- // ZBProject
- //
- // Created by 学丽 on 2019/4/19.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBTypeModel : NSObject
- @property (nonatomic, strong) NSString*name;
- @property (nonatomic, strong) NSString*Id;
- @property (nonatomic, strong) NSString*back_img;
- @property (nonatomic, strong) NSString*back_img2;
- @property (nonatomic, strong) NSString*text_color;
- @property (nonatomic, strong) NSString*text_color2;
- @property (nonatomic, strong) NSString*checked;
- @property (nonatomic, strong) NSString*lc_img;
- @end
- NS_ASSUME_NONNULL_END
|