WFCUOrgRelationship.h 524 B

123456789101112131415161718192021
  1. //
  2. // WFCUOrgRelationship.h
  3. // WFChatUIKit
  4. //
  5. // Created by Rain on 2022/12/25.
  6. // Copyright © 2022 WildfireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WFCUOrgRelationship : NSObject
  11. @property(nonatomic, strong)NSString *employeeId;
  12. @property(nonatomic, assign)NSInteger organizationId;
  13. @property(nonatomic, assign)NSInteger depth;
  14. @property(nonatomic, assign)BOOL bottom;
  15. @property(nonatomic, assign)NSInteger parentOrganizationId;
  16. @end
  17. NS_ASSUME_NONNULL_END