25 lines
491 B
C
25 lines
491 B
C
|
|
//
|
||
|
|
// YYLuckyCircleView.h
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/12/2.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "RCMicRoomViewModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYLuckyCircleView : UIView
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSDictionary *paramsDict;
|
||
|
|
@property (nonatomic, copy) NSString *imgStr;
|
||
|
|
@property (nonatomic, copy) NSString *moneyStr;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) RCMicRoomViewModel *viewModel;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|