RQCommonValueItemViewModel.h 367 B

1234567891011121314
  1. //
  2. // RQCommonValueItemViewModel.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/27.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. // 需要存储数据的item都继承自它
  8. #import "RQCommonItemViewModel.h"
  9. @interface RQCommonValueItemViewModel : RQCommonItemViewModel
  10. /// 存储数据用的key
  11. @property (nonatomic, readwrite, copy) NSString *key;
  12. @end