19 lines
445 B
Objective-C
19 lines
445 B
Objective-C
//
|
|
// DDMyInfoAccountViewController.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/6/29.
|
|
//
|
|
|
|
#import "WLBaseViewController.h"
|
|
#import "DDMyInfoSettingTableViewCell.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDMyInfoAccountViewController : WLBaseViewController<UITableViewDelegate,UITableViewDataSource>
|
|
@property (nonatomic, strong) UITableView * myTableView;
|
|
@property (nonatomic, strong) NSMutableArray * listArr;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|