123456789101112131415161718192021222324 |
- //
- // CGXVerticalMenuTitleModel.h
- // CGXVerticalMenuView-OC
- //
- // Created by CGX on 2018/05/01.
- // Copyright © 2019 CGX. All rights reserved.
- //
- #import "CGXVerticalMenuBaseModel.h"
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CGXVerticalMenuTitleModel : CGXVerticalMenuBaseModel
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, strong) UIColor *titleNormalColor;
- @property (nonatomic, strong) UIColor *titleSelectedColor;
- @property (nonatomic, strong) UIFont *titleFont;
- @property (nonatomic, strong) UIFont *titleSelectedFont;
- @end
- NS_ASSUME_NONNULL_END
|