Commit 4d3a04f0a316cf75d0fdc165bb0c6a26bb1d592a

Authored by zhangxiaowen
1 parent 0af60df2

no message

CNLiveServices/Classes/CNLiveServices.h
... ... @@ -33,6 +33,8 @@
33 33 #import "CNLiveSettingServiceProtocol.h"
34 34 // 我的收藏
35 35 #import "CNLiveCollectionServiceProtocol.h"
  36 +// 补贴余额
  37 +#import "CNLiveBalanceServiceProtocol.h"
36 38  
37 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
... ...