123456789101112131415161718192021 |
- //
- // ChatListMoveVC.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/31.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatListMoveVC : BaseViewController
- +(ChatListMoveVC *)initChatListMoveVC;
- @property (nonatomic, assign) NSInteger Id;
- @property (nonatomic, copy) NSString *titleStr;
- @property (nonatomic, strong) NSMutableArray *listArray;
- @end
- NS_ASSUME_NONNULL_END
|