TUIMenuCellData.h 592 B

12345678910111213141516171819202122232425
  1. // Created by Tencent on 2023/06/09.
  2. // Copyright © 2023 Tencent. All rights reserved.
  3. #import <Foundation/Foundation.h>
  4. NS_ASSUME_NONNULL_BEGIN
  5. /////////////////////////////////////////////////////////////////////////////////
  6. //
  7. // TUIMenuCellData
  8. //
  9. /////////////////////////////////////////////////////////////////////////////////
  10. @interface TUIMenuCellData : NSObject
  11. /**
  12. * Access path for grouped thumbnails in grouping units
  13. */
  14. @property(nonatomic, strong) NSString *path;
  15. @property(nonatomic, assign) BOOL isSelected;
  16. @end
  17. NS_ASSUME_NONNULL_END