22 lines
432 B
Objective-C
22 lines
432 B
Objective-C
//
|
||
// DDMyInfoReportViewController.h
|
||
// DingDangApp
|
||
//
|
||
// Created by apple on 2023/7/5.
|
||
//
|
||
|
||
#import "WLBaseViewController.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface DDMyInfoReportViewController : WLBaseViewController
|
||
/*
|
||
1:房间,2:用户,3:动态
|
||
*/
|
||
@property (nonatomic,assign) NSInteger juBaoType;
|
||
@property (nonatomic,copy) NSString * jubao_id;
|
||
@property (nonatomic,assign) BOOL isSmallMessage;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|