RQHomeSubPageToolBarOneGroupViewModel.m 614 B

1234567891011121314151617181920212223
  1. //
  2. // RQHomeSubPageToolBarOneGroupViewModel.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2021/12/13.
  6. // Copyright © 2021 JCZ. All rights reserved.
  7. //
  8. #import "RQHomeSubPageToolBarOneGroupViewModel.h"
  9. @interface RQHomeSubPageToolBarOneGroupViewModel ()
  10. @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
  11. @end
  12. @implementation RQHomeSubPageToolBarOneGroupViewModel
  13. /// init
  14. - (instancetype)initWithRQHomePageSubjectType:(RQHomePageSubjectType)homePageSubjectType {
  15. if (self = [super init]) {
  16. self.homePageSubjectType = homePageSubjectType;
  17. }
  18. return self;
  19. }
  20. @end