Files
featherVoice/TUIKit/TUIChat/BaseCellData/Chat/TUIGroupNoticeCellData.h
2025-08-08 10:49:36 +08:00

23 lines
441 B
Objective-C

//
// TUIGroupNoticeCellData.h
// TUIGroup
//
// Created by harvy on 2022/1/11.
// Copyright © 2023 Tencent. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface TUIGroupNoticeCellData : NSObject
@property(nonatomic, copy) NSString *name;
@property(nonatomic, copy) NSString *desc;
@property(nonatomic, weak) id target;
@property(nonatomic, assign) SEL selector;
@end
NS_ASSUME_NONNULL_END