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