1234567891011121314151617181920212223 |
- //
- // XYDevelopementModeCellModel.h
- // Timi
- //
- // Created by 翟玉磊 on 2021/4/13.
- //
- #import "BaseObject.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface XYDevelopementModeCellModel : BaseObject
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *subtitle;
- @property (nonatomic, assign) CGFloat cellHeight;
- /// 高度默认62.0f
- + (instancetype)createModelWithTitle:(NSString *)title subtitle:(NSString *)subtitle;
- @end
- NS_ASSUME_NONNULL_END
|