YMChatNotificationViewModel.h 772 B

1234567891011121314151617181920212223242526
  1. //
  2. // YMChatNotificationViewModel.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. #import "YMChatNotificationSectionViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMChatNotificationViewModel : MSYOUPAIViewModel
  12. /// 获取消息通知列表数据
  13. - (void)getChatNotificationListData;
  14. /// 获取缘分牵线信息
  15. - (void)getPredestinedAffinityInfo;
  16. /// 获取点赞通知信息
  17. - (void)getLikesNotificationInfo;
  18. /// 分组数据
  19. @property (nonatomic, strong, readonly) NSArray <YMChatNotificationSectionViewModel*>*sectionDataArray;
  20. /// 消息通知功能操作
  21. @property (nonatomic, strong, readonly) RACSubject *chatNotificationFunctionsOperationSubject;
  22. @end
  23. NS_ASSUME_NONNULL_END