Commit 4d3a04f0a316cf75d0fdc165bb0c6a26bb1d592a
1 parent
0af60df2
no message
Showing
2 changed files
with
22 additions
and
0 deletions
CNLiveServices/Classes/CNLiveServices.h
| @@ -33,6 +33,8 @@ | @@ -33,6 +33,8 @@ | ||
| 33 | #import "CNLiveSettingServiceProtocol.h" | 33 | #import "CNLiveSettingServiceProtocol.h" |
| 34 | // 我的收藏 | 34 | // 我的收藏 |
| 35 | #import "CNLiveCollectionServiceProtocol.h" | 35 | #import "CNLiveCollectionServiceProtocol.h" |
| 36 | +// 补贴余额 | ||
| 37 | +#import "CNLiveBalanceServiceProtocol.h" | ||
| 36 | 38 | ||
| 37 | #pragma mark - 登录 | 39 | #pragma mark - 登录 |
| 38 | // 登录 | 40 | // 登录 |
CNLiveServices/Classes/Mine/CNLiveBalanceServiceProtocol.h
0 → 100644
| 1 | +// | ||
| 2 | +// CNLiveBalanceServiceProtocol.h | ||
| 3 | +// CNLiveServices | ||
| 4 | +// | ||
| 5 | +// Created by 153993236@qq.com on 07/22/2019. | ||
| 6 | +// Copyright (c) 2019 153993236@qq.com. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <Foundation/Foundation.h> | ||
| 10 | +#import <UIKit/UIKit.h> | ||
| 11 | +#import "BHServiceProtocol.h" | ||
| 12 | + | ||
| 13 | +@protocol CNLiveBalanceServiceProtocol <NSObject, BHServiceProtocol> | ||
| 14 | + | ||
| 15 | +// 补贴余额 | ||
| 16 | +- (UIViewController *)getBalanceViewController; | ||
| 17 | +- (void)pushToBalanceViewController; | ||
| 18 | + | ||
| 19 | + | ||
| 20 | +@end |