18 lines
332 B
C
18 lines
332 B
C
|
|
//
|
||
|
|
// QXToppicDynamicTopView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/6/3.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXDynamicModel.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXToppicDynamicTopView : UIView
|
||
|
|
-(instancetype)initWithModel:(QXTopicModel*)model;
|
||
|
|
@property (nonatomic,strong)QXTopicModel *model;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|