YMFeesSettingCellViewModel.h 561 B

12345678910111213141516171819202122
  1. //
  2. // YMFeesSettingCellViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/23.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "MSYOUPAIViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMFeesSettingCellViewModel : MSYOUPAIViewModel
  11. /// 收费设置标题
  12. @property (nonatomic, copy) NSString *feesSettingTitle;
  13. /// 收费设置内容
  14. @property (nonatomic, copy) NSString *feesSettingContent;
  15. /// 收费设置功能类型
  16. @property (nonatomic, assign, readonly) YMFeesSettingFunctionsType feesSettingFunctionsType;
  17. @end
  18. NS_ASSUME_NONNULL_END