20 lines
348 B
C
20 lines
348 B
C
![]() |
//
|
||
|
// YMRoomCandyGiftView.h
|
||
|
// YUMI
|
||
|
//
|
||
|
// Created by YUMI on 2021/12/10.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface XPRoomCandyGiftView : UIView
|
||
|
///是否是最大的礼物
|
||
|
@property (nonatomic,assign) BOOL isMaxLargeGift;
|
||
|
///糖果的信息
|
||
|
@property (nonatomic,copy) NSDictionary * candyInfo;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|