1234567891011121314151617181920212223 |
- //
- // CGXCategoryIndicatorParamsModel.m
- // CGXVerticalMenuView-OC
- //
- // Created by CGX on 2018/05/01.
- // Copyright © 2019 CGX. All rights reserved.
- //
- #import "CGXVerticalMenuIndicatorParamsModel.h"
- @implementation CGXVerticalMenuIndicatorParamsModel
- - (instancetype)init
- {
- self = [super init];
- if (self) {
- self.timeDuration = 0;
- self.isFirstClick = YES;
- self.selectedIndex = CGXCategoryListCellSelectedTypeClick;
- }
- return self;
- }
- @end
|