1234567891011121314151617181920212223 |
- //
- // RQHomeSubPageToolBarOneGroupViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2021/12/13.
- // Copyright © 2021 JCZ. All rights reserved.
- //
- #import "RQHomeSubPageToolBarOneGroupViewModel.h"
- @interface RQHomeSubPageToolBarOneGroupViewModel ()
- @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
- @end
- @implementation RQHomeSubPageToolBarOneGroupViewModel
- /// init
- - (instancetype)initWithRQHomePageSubjectType:(RQHomePageSubjectType)homePageSubjectType {
- if (self = [super init]) {
- self.homePageSubjectType = homePageSubjectType;
- }
- return self;
- }
- @end
|