KWMNewGiftCardVC.h 600 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
//
//  KWMNewGiftCardVC.h
//  iCemarose
//
//  Created by HouWeiBin on 2017/1/23.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import "KWMBaseVC.h"
#import "KWMBasePageVC.h"
#import "KWMNewGiftCardCell.h"

@protocol KWMGiftCardDelegate <NSObject>

- (void)kwm_addedGiftCard:(BUYCheckout *)checkout;

@end
@interface KWMNewGiftCardVC : KWMBasePageVC

@property (weak, nonatomic) IBOutlet UITableView *tbvGiftCard;
@property (weak, nonatomic) IBOutlet UIView *vNoGiftCard;

@property (nonatomic) BUYCheckout *checkout;

@property (weak, nonatomic) id<KWMGiftCardDelegate>delegate;

@end