OpeninstallData.h 482 B

123456789101112131415161718192021
  1. //
  2. // OpeninstallData.h
  3. // OpenInstallSDK
  4. //
  5. // Created by cooper on 2018/4/17.
  6. // Copyright © 2018年 cooper. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface OpeninstallData : NSObject<NSCopying>
  10. - (instancetype)initWithData:(NSDictionary *)data
  11. channelCode:(NSString *)channelCode;
  12. @property (nonatomic,strong) NSDictionary *data;//动态参数
  13. @property (nonatomic,copy) NSString *channelCode;//渠道编号
  14. @end