// // ProjectInfo_Apk_Image.h // UUTUtils // // Created by zhuge on 2017/12/27. // Copyright © 2017年 zhuge. All rights reserved. // #import @interface ProjectInfo_Apk_Image : NSObject @property (strong) NSString *path; @property (strong) NSImage *image; @property (assign) int width; @property (assign) int height; @property (assign) long fileSize; - (ProjectInfo_Apk_Image*) initWithPath:(NSString*) path; @end