// // YMLoginRegistrAgreementPopupView.h // MSYOUPAI // // Created by YoMi on 2024/2/10. // Copyright © 2024 MS. All rights reserved. // #import "YMBaseView.h" NS_ASSUME_NONNULL_BEGIN typedef void(^LoginRegistrAgreementButtonBlock)(BOOL isConsentAuthorization); typedef void(^LoginRegistrAgreementDismissBlock)(void); @interface YMLoginRegistrAgreementPopupView : YMBaseView @property (nonatomic, copy) LoginRegistrAgreementButtonBlock buttonBlock; @property (nonatomic, copy) LoginRegistrAgreementDismissBlock dismissBlock; @end NS_ASSUME_NONNULL_END