123456789101112131415161718 |
- //
- // YMIncomeBreakdownViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/3.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMIncomeBreakdownListViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMIncomeBreakdownViewModel : MSYOUPAIViewModel
- /// 收支明细ViewModel列表
- @property (nonatomic, strong, readonly) NSArray <YMIncomeBreakdownListViewModel *>*incomeBreakdownVMListDataArray;
- @end
- NS_ASSUME_NONNULL_END
|