1234567891011121314151617181920212223242526272829 |
- //
- // ProjectInfo_Upload.h
- // UUTUtils
- //
- // Created by zhuge on 2017/12/27.
- // Copyright © 2017年 zhuge. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "ProjectInfo_Apk_Image.h"
- @class ProjectInfo_Path;
- @interface ProjectInfo_Upload : NSObject
- @property (strong) NSString *oriApkPath;
- @property (strong) ProjectInfo_Apk_Image *icon;
- @property (strong) ProjectInfo_Apk_Image *top;
- @property (strong) NSMutableArray *maScreenShots;
- @property (strong) ProjectInfo_Path *path;
- - (void) setIconWithFilePath:(NSString *)filePath;
- - (void) setTopWithFilePath:(NSString *)filePath;
- - (void) addScreenShotWithFilePath:(NSString *)filePath;
- -(ProjectInfo_Upload *) initWithDic:(NSDictionary*)dic path:(ProjectInfo_Path*)path;
- - (NSDictionary *)toDic;
- @end
|