123456789101112131415161718 |
- //
- // AccountAndSecurityModel.m
- // ChinaTheoryNetwork
- //
- // Created by 张毅成 on 2019/1/28.
- // Copyright © 2019 张毅成. All rights reserved.
- //
- #import "AccountAndSecurityModel.h"
- static NSArray *_arrayData;
- @implementation AccountAndSecurityModel
- + (NSArray *)arrayData {
- return @[@"当前账号", @"手机号"];
- }
- @end
|