12345678910111213141516171819 |
- //
- // YMFeesSettingNotesCell.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/24.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMBaseView.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^NotesViewHeightBlock)(CGFloat notesViewHeight);
- @interface YMFeesSettingNotesView : YMBaseView
- @property (nonatomic, copy) NotesViewHeightBlock notesViewHeightBlock;
- @end
- NS_ASSUME_NONNULL_END
|