123456789101112131415161718192021 |
- //
- // YMDynamicImageModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMDynamicImageModel: NSObject
- @property (nonatomic, copy) NSString *exts;
- @property (nonatomic, strong) NSNumber *height;
- @property (nonatomic, assign) NSInteger image_id;
- @property (nonatomic, copy) NSString *url;
- @property (nonatomic, strong) NSNumber *width;
- @end
- NS_ASSUME_NONNULL_END
|