RQCommonLabelItemViewModel.h 358 B

123456789101112131415
  1. //
  2. // RQCommonLabelItemViewModel.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/27.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. // 右边显示的内容
  8. #import "RQCommonItemViewModel.h"
  9. @interface RQCommonLabelItemViewModel : RQCommonItemViewModel
  10. /** 右边label显示的内容 */
  11. @property (nonatomic, readwrite, copy) NSString *text;
  12. @end