24 lines
468 B
Objective-C
24 lines
468 B
Objective-C
//
|
|
// FeedBackConfigModel.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/7/3.
|
|
//
|
|
|
|
#import "PIBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
@interface FeedBackTypeModel : PIBaseModel
|
|
@property (nonatomic, copy) NSString *desc;
|
|
@property (nonatomic, copy) NSString *type;
|
|
@end
|
|
|
|
@interface FeedBackConfigModel : PIBaseModel
|
|
@property (nonatomic, copy) NSDictionary *customContactMap;
|
|
@property (nonatomic, copy) NSArray <FeedBackTypeModel *>*typeEnumList;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|