123456789101112131415161718192021222324 |
- //
- // FKVipBuyPayController.h
- // FirstLink
- //
- // Created by jack on 15/9/14.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import "FLViewController.h"
- #import "SubmitPaymentItem.h"
- @protocol FKVipPayDelegate <NSObject>
- @optional
- - (void)vipPaySuccess;
- - (void)vipPayFail;
- @end
- @interface FKVipPayController : FLViewController
- @property (nonatomic, weak) id<FKVipPayDelegate> delegate;
- @property (nonatomic, strong) SubmitPaymentItem *payItem;
- @end
|