NYFloatingSuggestViewModel.h 507 B

1234567891011121314151617181920212223
  1. //
  2. // NYFloatingSuggestViewModel.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 "NYFloatingSuggestView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NYFloatingSuggestViewModel : NSObject
  12. @property (nonatomic, readwrite, weak) NYFloatingSuggestView *floatingSuggestView;
  13. @property (nonatomic, strong) RACCommand *iconCommand;
  14. @property (nonatomic, strong) RACCommand *closeCommand;
  15. @end
  16. NS_ASSUME_NONNULL_END