NYComplaintPageViewModel.h 627 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NYComplaintPageViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/6/30.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "NYComplaintPageViewController.h"
  10. #import "NYSerialQueueManager.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface NYComplaintPageViewModel : NSObject
  13. @property (weak,nonatomic) NYComplaintPageViewController *complaintPageViewVC;
  14. //上传
  15. @property (nonatomic, strong) RACCommand *uploadCommand;
  16. //删除
  17. @property (nonatomic, strong) RACCommand *deleteCommand;
  18. //提交
  19. @property (nonatomic, strong) RACCommand *submitCommand;
  20. @end
  21. NS_ASSUME_NONNULL_END