ChatListMoveVC.h 464 B

123456789101112131415161718192021
  1. //
  2. // ChatListMoveVC.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/31.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatListMoveVC : BaseViewController
  11. +(ChatListMoveVC *)initChatListMoveVC;
  12. @property (nonatomic, assign) NSInteger Id;
  13. @property (nonatomic, copy) NSString *titleStr;
  14. @property (nonatomic, strong) NSMutableArray *listArray;
  15. @end
  16. NS_ASSUME_NONNULL_END