20 lines
295 B
Objective-C
20 lines
295 B
Objective-C
//
|
|
// XPUpgradeView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/12/5.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPVersionUpdateModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPUpgradeView : UIView
|
|
|
|
@property (nonatomic,strong) XPVersionUpdateModel *versionModel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|