ProjectInfo_Upload.h 779 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ProjectInfo_Upload.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/27.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ProjectInfo_Apk_Image.h"
  10. @class ProjectInfo_Path;
  11. @interface ProjectInfo_Upload : NSObject
  12. @property (strong) NSString *oriApkPath;
  13. @property (strong) ProjectInfo_Apk_Image *icon;
  14. @property (strong) ProjectInfo_Apk_Image *top;
  15. @property (strong) NSMutableArray *maScreenShots;
  16. @property (strong) ProjectInfo_Path *path;
  17. - (void) setIconWithFilePath:(NSString *)filePath;
  18. - (void) setTopWithFilePath:(NSString *)filePath;
  19. - (void) addScreenShotWithFilePath:(NSString *)filePath;
  20. -(ProjectInfo_Upload *) initWithDic:(NSDictionary*)dic path:(ProjectInfo_Path*)path;
  21. - (NSDictionary *)toDic;
  22. @end