12345678910111213141516171819202122232425 |
- //
- // LDSuperBrandModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/11.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LDSuperBrandModel : NSObject
- @property (nonatomic, copy) NSString *Id;
- @property (nonatomic, copy) NSString *name;
- @property (nonatomic, copy) NSString *img;
- @property (nonatomic, copy) NSString *note;
- @property (nonatomic, copy) NSString *url;
- @property (nonatomic, copy) NSString *ios_js_string;
- @end
- NS_ASSUME_NONNULL_END
|