YMLoginRegistrAgreementPopupView.h 563 B

12345678910111213141516171819202122
  1. //
  2. // YMLoginRegistrAgreementPopupView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/10.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMBaseView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^LoginRegistrAgreementButtonBlock)(BOOL isConsentAuthorization);
  11. typedef void(^LoginRegistrAgreementDismissBlock)(void);
  12. @interface YMLoginRegistrAgreementPopupView : YMBaseView
  13. @property (nonatomic, copy) LoginRegistrAgreementButtonBlock buttonBlock;
  14. @property (nonatomic, copy) LoginRegistrAgreementDismissBlock dismissBlock;
  15. @end
  16. NS_ASSUME_NONNULL_END