ParseInstallReceiptList.h 489 B

123456789101112131415161718192021222324
  1. //
  2. // ParseInstallReceiptListModel.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/8.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. // 功能描述:解析安装已回执类
  8. #import <Foundation/Foundation.h>
  9. @interface ParseInstallReceiptList: NSObject
  10. /**
  11. 解析安装回执数组
  12. @param arr <#arr description#>
  13. */
  14. - (void)parseInstallReceiptInfoArr:(NSArray *)arr;
  15. /**
  16. 安装回执数组
  17. */
  18. @property (strong) NSMutableArray * infoArr;
  19. @end