adminLists.h 386 B

12345678910111213141516171819
  1. //
  2. // adminLists.h
  3. // yunbaolive
  4. //
  5. // Created by zqm on 16/5/22.
  6. // Copyright © 2016年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol adminDelegate <NSObject>
  10. -(void)setAdminSuccess:(NSString *)isadmin andName:(NSString *)name andID:(NSString *)ID;
  11. @end
  12. @interface adminLists : YBBaseViewController
  13. @property(nonatomic,weak)id <adminDelegate> delegate;
  14. @end