MVVMViewModel.h 468 B

123456789101112131415161718192021222324
  1. //
  2. // MVVMViewModel.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2019/12/6.
  6. // Copyright © 2019 翟玉磊. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "MVVMModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MVVMViewModel : NSObject
  12. @property (nonatomic, readwrite, copy) NSString *nameStr;
  13. @property (nonatomic, readwrite, strong) MVVMModel *model;
  14. - (void)setWithModel:(MVVMModel *)model;
  15. - (void)clickChangeName;
  16. @end
  17. NS_ASSUME_NONNULL_END