TUIGroupNoticeCellData.h 441 B

12345678910111213141516171819202122
  1. //
  2. // TUIGroupNoticeCellData.h
  3. // TUIGroup
  4. //
  5. // Created by harvy on 2022/1/11.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TUIGroupNoticeCellData : NSObject
  11. @property(nonatomic, copy) NSString *name;
  12. @property(nonatomic, copy) NSString *desc;
  13. @property(nonatomic, weak) id target;
  14. @property(nonatomic, assign) SEL selector;
  15. @end
  16. NS_ASSUME_NONNULL_END