22 lines
400 B
C
22 lines
400 B
C
|
|
//
|
||
|
|
// IAPModel.h
|
||
|
|
// superSDK
|
||
|
|
//
|
||
|
|
// Created by HellöM on 2019/5/29.
|
||
|
|
// Copyright © 2019 黃紹毓. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface IAPModel : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSString *productID;
|
||
|
|
@property (nonatomic, strong) NSString *extra;
|
||
|
|
@property (nonatomic, strong) NSString *standalone;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|