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