123456789101112131415161718192021222324252627 |
- //
- // LDSuperListModel.h
- // hc
- //
- // Created by liuxueli on 2018/12/12.
- // Copyright © 2018 hc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LDSuperListModel : NSObject
- @property (nonatomic, strong) NSString *Id;
- @property (nonatomic, strong) NSString *ios_js_string;
- @property (nonatomic, strong) NSString *img;
- @property (nonatomic, strong) NSString *position;
- @property (nonatomic, strong) NSString *show_type;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *andrio_js_string;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *url;
- @property (nonatomic, strong) NSString *note;
- @end
- NS_ASSUME_NONNULL_END
|