WFCUOrganizationEx.h 575 B

12345678910111213141516171819202122
  1. //
  2. // WFCUOrganizationPath.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 WFCUOrganization;
  10. @class WFCUEmployee;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface WFCUOrganizationEx : NSObject
  13. @property (nonatomic, assign)NSInteger organizationId;
  14. @property(nonatomic, strong)WFCUOrganization *organization;
  15. @property(nonatomic, strong)NSArray<WFCUOrganization *> *subOrganizations;
  16. @property(nonatomic, strong)NSArray<WFCUEmployee *> *employees;
  17. @end
  18. NS_ASSUME_NONNULL_END