YMIncomeBreakdownListPointsAndEarningsSectionViewModel.h 607 B

1234567891011121314151617181920
  1. //
  2. // YMIncomeBreakdownListPointsAndEarningsSectionViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/3.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. #import "YMIncomeBreakdownListPointsAndEarningsCellViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YMIncomeBreakdownListPointsAndEarningsSectionViewModel : MSYOUPAIViewModel
  12. /// 分组标题
  13. @property (nonatomic, copy, readonly) NSString *sectionTitle;
  14. /// 行数据
  15. @property (nonatomic, strong, readonly) NSArray <YMIncomeBreakdownListPointsAndEarningsCellViewModel*>*rowDataArray;
  16. @end
  17. NS_ASSUME_NONNULL_END