123456789101112131415161718192021222324 |
- //
- // MVVMViewModel.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2019/12/6.
- // Copyright © 2019 翟玉磊. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "MVVMModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MVVMViewModel : NSObject
- @property (nonatomic, readwrite, copy) NSString *nameStr;
- @property (nonatomic, readwrite, strong) MVVMModel *model;
- - (void)setWithModel:(MVVMModel *)model;
- - (void)clickChangeName;
- @end
- NS_ASSUME_NONNULL_END
|