// // NYComplaintPageViewModel.h // jiaPei // // Created by Ning.ge on 2023/6/30. // Copyright © 2023 JCZ. All rights reserved. // #import #import "NYComplaintPageViewController.h" #import "NYSerialQueueManager.h" NS_ASSUME_NONNULL_BEGIN @interface NYComplaintPageViewModel : NSObject @property (weak,nonatomic) NYComplaintPageViewController *complaintPageViewVC; //上传 @property (nonatomic, strong) RACCommand *uploadCommand; //删除 @property (nonatomic, strong) RACCommand *deleteCommand; //提交 @property (nonatomic, strong) RACCommand *submitCommand; @end NS_ASSUME_NONNULL_END