YMChatNotificationCellViewModel.h 685 B

1234567891011121314151617181920212223
  1. //
  2. // YMChatNotificationCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/21.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^SwitchNotificationBlock)(void);
  11. @interface YMChatNotificationCellViewModel : MSYOUPAIViewModel
  12. @property (nonatomic, copy) SwitchNotificationBlock switchNotificationBlock;
  13. /// 行标题
  14. @property (nonatomic, copy, readonly) NSString *rowTitle;
  15. /// 是否开启
  16. @property (nonatomic, assign, readonly) BOOL isOpen;
  17. /// 消息通知功能类型
  18. @property (nonatomic, assign, readonly) YMChatNotificationFunctionsType chatNotificationFunctionsType;
  19. @end
  20. NS_ASSUME_NONNULL_END