1234567891011121314151617181920 |
- //
- // YMIncomeBreakdownListPointsAndEarningsSectionViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/3.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMIncomeBreakdownListPointsAndEarningsCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMIncomeBreakdownListPointsAndEarningsSectionViewModel : MSYOUPAIViewModel
- /// 分组标题
- @property (nonatomic, copy, readonly) NSString *sectionTitle;
- /// 行数据
- @property (nonatomic, strong, readonly) NSArray <YMIncomeBreakdownListPointsAndEarningsCellViewModel*>*rowDataArray;
- @end
- NS_ASSUME_NONNULL_END
|