19 lines
365 B
Objective-C
19 lines
365 B
Objective-C
//
|
|
// XPRoomAnchorRankBannerView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/4/15.
|
|
// 个播小时榜飘屏
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class RoomHalfHourRankModel;
|
|
@interface XPRoomAnchorRankBannerView : UIView
|
|
|
|
///个播小时榜信息
|
|
@property (nonatomic,copy) RoomHalfHourRankModel * anchorRankInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|