CGXVerticalMenuIndicatorParamsModel.m 484 B

1234567891011121314151617181920212223
  1. //
  2. // CGXCategoryIndicatorParamsModel.m
  3. // CGXVerticalMenuView-OC
  4. //
  5. // Created by CGX on 2018/05/01.
  6. // Copyright © 2019 CGX. All rights reserved.
  7. //
  8. #import "CGXVerticalMenuIndicatorParamsModel.h"
  9. @implementation CGXVerticalMenuIndicatorParamsModel
  10. - (instancetype)init
  11. {
  12. self = [super init];
  13. if (self) {
  14. self.timeDuration = 0;
  15. self.isFirstClick = YES;
  16. self.selectedIndex = CGXCategoryListCellSelectedTypeClick;
  17. }
  18. return self;
  19. }
  20. @end