XYDevelopementModeCellModel.h 475 B

1234567891011121314151617181920212223
  1. //
  2. // XYDevelopementModeCellModel.h
  3. // Timi
  4. //
  5. // Created by 翟玉磊 on 2021/4/13.
  6. //
  7. #import "BaseObject.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface XYDevelopementModeCellModel : BaseObject
  10. @property (nonatomic, copy) NSString *title;
  11. @property (nonatomic, copy) NSString *subtitle;
  12. @property (nonatomic, assign) CGFloat cellHeight;
  13. /// 高度默认62.0f
  14. + (instancetype)createModelWithTitle:(NSString *)title subtitle:(NSString *)subtitle;
  15. @end
  16. NS_ASSUME_NONNULL_END