21 lines
311 B
C
21 lines
311 B
C
|
|
//
|
||
|
|
// YYRoomRankVC.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/8.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "BaseViewController.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYRoomRankVC : BaseViewController
|
||
|
|
|
||
|
|
@property(nonatomic, copy) NSString *rid;
|
||
|
|
|
||
|
|
@property(nonatomic, copy) void (^onDismissBlock)(void);
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|