ProjectInfo_Apk_Image.h 441 B

12345678910111213141516171819202122
  1. //
  2. // ProjectInfo_Apk_Image.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/27.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @interface ProjectInfo_Apk_Image : NSObject
  10. @property (strong) NSString *path;
  11. @property (strong) NSImage *image;
  12. @property (assign) int width;
  13. @property (assign) int height;
  14. @property (assign) long fileSize;
  15. - (ProjectInfo_Apk_Image*) initWithPath:(NSString*) path;
  16. @end