19 lines
389 B
Objective-C
19 lines
389 B
Objective-C
//
|
|
// DDMyAuthorViewController.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/6/20.
|
|
//
|
|
|
|
#import "WLBaseViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDMyAuthorViewController : WLBaseViewController<UITableViewDelegate, UITableViewDataSource>
|
|
@property (strong, nonatomic) UITableView *tableView;
|
|
@property (nonatomic,strong)NSDictionary *metaInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|