1234567891011121314151617181920212223 |
- //
- // NYFloatingSuggestViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/6/30.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NYFloatingSuggestView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYFloatingSuggestViewModel : NSObject
- @property (nonatomic, readwrite, weak) NYFloatingSuggestView *floatingSuggestView;
- @property (nonatomic, strong) RACCommand *iconCommand;
- @property (nonatomic, strong) RACCommand *closeCommand;
- @end
- NS_ASSUME_NONNULL_END
|