1234567891011121314151617181920212223 |
- //
- // fileUploadToFileCenterModel.h
- // Private-X
- //
- // Created by xd h on 2024/4/11.
- //
- #import "SuperModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface dileCenterDataModel : SuperModel
- @property (nonatomic, copy) NSString* fileKey;
- @property (nonatomic, copy) NSString* md5;
- @property(nonatomic, assign)NSInteger uploadSize;
- @end
- @interface fileUploadToFileCenterModel : SuperModel
- @property (nonatomic, strong) dileCenterDataModel* data;
- @end
- NS_ASSUME_NONNULL_END
|