WFCUEmployeeEx.h 491 B

123456789101112131415161718192021
  1. //
  2. // WFCUEmployeeEx.h
  3. // WFChatUIKit
  4. //
  5. // Created by Rain on 2022/12/29.
  6. // Copyright © 2022 Wildfire Chat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class WFCUEmployee;
  10. @class WFCUOrgRelationship;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface WFCUEmployeeEx : NSObject
  13. @property(nonatomic, strong)NSString *employeeId;
  14. @property(nonatomic, strong)WFCUEmployee *employee;
  15. @property(nonatomic, strong)NSArray<WFCUOrgRelationship *> *relationships;
  16. @end
  17. NS_ASSUME_NONNULL_END