12345678910111213141516171819202122232425262728 |
- //
- // YMFeesSettingViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/23.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- #import "YMFeesSettingCellViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMFeesSettingViewModel : MSYOUPAIViewModel
- /// 获取收费设置基础信息数据
- - (void)getFeesSettingBaseInfoData;
- /// 获取收费设置基础信息数据
- - (void)getFeesSettingPriceInfoData;
- /// 设置收费价格数据
- - (void)settingFeesPriceDataWithPriceId:(NSInteger)priceId ofType:(NSInteger)type;
- /// 列表数据
- @property (nonatomic, strong, readonly) NSArray <YMFeesSettingCellViewModel*>*listDataArray;
- /// 说明提示
- @property (nonatomic, strong, readonly) NSAttributedString *notesTipsAttributed;
- /// 收费设置功能操作
- @property (nonatomic, strong, readonly) RACSubject *feesSettingFunctionsOperationSubject;
- @end
- NS_ASSUME_NONNULL_END
|