12345678910111213141516171819202122 |
- //
- // ProjectInfo_Apk_Image.h
- // UUTUtils
- //
- // Created by zhuge on 2017/12/27.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- @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
|