AccountAndSecurityModel.m 339 B

123456789101112131415161718
  1. //
  2. // AccountAndSecurityModel.m
  3. // ChinaTheoryNetwork
  4. //
  5. // Created by 张毅成 on 2019/1/28.
  6. // Copyright © 2019 张毅成. All rights reserved.
  7. //
  8. #import "AccountAndSecurityModel.h"
  9. static NSArray *_arrayData;
  10. @implementation AccountAndSecurityModel
  11. + (NSArray *)arrayData {
  12. return @[@"当前账号", @"手机号"];
  13. }
  14. @end