YOUPAILZLiveManageListWindow.h 660 B

123456789101112131415161718192021222324252627
  1. //
  2. // YOUPAILZLiveManageListWindow.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/8/25.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "ZYBaseWindow.h"
  9. #import "YOUPAILZLiveModel.h"
  10. typedef NS_ENUM(NSUInteger,LZLiveManageListType){
  11. LZLiveManageListTypeWithManage,
  12. LZLiveManageListTypeWithDisableSendMessage,
  13. LZLiveManageListTypeWithForbidden,
  14. };
  15. NS_ASSUME_NONNULL_BEGIN
  16. @interface YOUPAILZLiveManageListWindow : ZYBaseWindow
  17. @property (nonatomic,strong) NSString *youpaiptitleText;
  18. @property (nonatomic,assign) LZLiveManageListType youpaiptype;
  19. @property (nonatomic,strong) YOUPAILZLiveModel *youpaipliveModel;
  20. @end
  21. NS_ASSUME_NONNULL_END