Files
peko-ios/YuMi/Modules/YMMine/View/MineInfo/XPMineUserInfoGiftWallSubViewController.h

25 lines
605 B
C
Raw Normal View History

2023-07-14 18:50:55 +08:00
//
2023-08-10 18:44:46 +08:00
// XPMineUserInfoGiftWalllSubViewController.h
// xplan-ios
2023-07-14 18:50:55 +08:00
//
2023-08-10 18:44:46 +08:00
// Created by 冯硕 on 2022/6/15.
2023-07-14 18:50:55 +08:00
//
#import "MvpViewController.h"
#import <JXCategoryView/JXCategoryListContainerView.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger, GiftWallViewType) {
2023-08-10 18:44:46 +08:00
///普通礼物
GiftWallViewType_Normal = 1,
///幸运礼物
GiftWallViewType_Lucky = 2,
2023-07-14 18:50:55 +08:00
};
@interface XPMineUserInfoGiftWallSubViewController : MvpViewController<JXCategoryListContentViewDelegate>
@property (nonatomic,assign) GiftWallViewType type;
@property (nonatomic,copy) NSString *userUid;
@end
NS_ASSUME_NONNULL_END