21 lines
293 B
Objective-C
21 lines
293 B
Objective-C
//
|
|
// LMSignInAlertView.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/30.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LMSignInAlertView : UIView
|
|
|
|
@property (nonatomic, assign) NSInteger isHome;
|
|
@property (nonatomic, strong) id response;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|