fileUploadToFileCenterModel.h 468 B

1234567891011121314151617181920212223
  1. //
  2. // fileUploadToFileCenterModel.h
  3. // Private-X
  4. //
  5. // Created by xd h on 2024/4/11.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface dileCenterDataModel : SuperModel
  10. @property (nonatomic, copy) NSString* fileKey;
  11. @property (nonatomic, copy) NSString* md5;
  12. @property(nonatomic, assign)NSInteger uploadSize;
  13. @end
  14. @interface fileUploadToFileCenterModel : SuperModel
  15. @property (nonatomic, strong) dileCenterDataModel* data;
  16. @end
  17. NS_ASSUME_NONNULL_END