123456789101112131415161718192021222324252627 |
- //
- // YOUPAILZLiveManageListWindow.h
- // VQU
- //
- // Created by CY on 2021/8/25.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "ZYBaseWindow.h"
- #import "YOUPAILZLiveModel.h"
- typedef NS_ENUM(NSUInteger,LZLiveManageListType){
- LZLiveManageListTypeWithManage,
- LZLiveManageListTypeWithDisableSendMessage,
- LZLiveManageListTypeWithForbidden,
- };
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZLiveManageListWindow : ZYBaseWindow
- @property (nonatomic,strong) NSString *youpaiptitleText;
- @property (nonatomic,assign) LZLiveManageListType youpaiptype;
- @property (nonatomic,strong) YOUPAILZLiveModel *youpaipliveModel;
- @end
- NS_ASSUME_NONNULL_END
|