12345678910111213141516171819202122 |
- //
- // KBDetailImgModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/10/11.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KBDetailImgModel : NSObject
- @property (nonatomic, copy) NSString *url;
- @property (nonatomic, strong) NSNumber *width;
- @property (nonatomic, strong) NSNumber *height;
- @end
- NS_ASSUME_NONNULL_END
|