123456789101112131415161718192021 |
- //
- // NYLoginBindViewModel.m
- // jiaPei
- //
- // Created by Ning.ge on 2025/3/31.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import "NYLoginBindViewModel.h"
- @implementation NYLoginBindViewModel
- - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
- if (self = [super initWithServices:services params:params]) {
- }
-
- return self;
- }
- @end
|