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