22 lines
380 B
Objective-C
22 lines
380 B
Objective-C
//
|
|
// XPNobleCenterEntranceView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/1/6.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NobleInfo.h"
|
|
#import "NobleCenterModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPNobleCenterEntranceView : UIView
|
|
|
|
@property (nonatomic, strong) NobleInfo *vipInfo;
|
|
@property (nonatomic, strong) NobleCenterModel *nobleInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|