NYLoginBindViewModel.m 407 B

123456789101112131415161718192021
  1. //
  2. // NYLoginBindViewModel.m
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2025/3/31.
  6. // Copyright © 2025 JCZ. All rights reserved.
  7. //
  8. #import "NYLoginBindViewModel.h"
  9. @implementation NYLoginBindViewModel
  10. - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
  11. if (self = [super initWithServices:services params:params]) {
  12. }
  13. return self;
  14. }
  15. @end