WFCUSelectedUserInfo.h 444 B

123456789101112131415161718192021
  1. //
  2. // WFCSelectedUserInfo.h
  3. // WFChatUIKit
  4. //
  5. // Created by Zack Zhang on 2020/4/5.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <WFChatClient/WFCCUserInfo.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSUInteger, SelectedStatusType) {
  11. Disable,
  12. Unchecked,
  13. Checked,
  14. };
  15. @interface WFCUSelectedUserInfo : WFCCUserInfo
  16. @property (nonatomic, assign)SelectedStatusType selectedStatus;
  17. @end
  18. NS_ASSUME_NONNULL_END