Files
real-e-party-iOS/YuMi/Modules/YMLogin/Model/FeedBackConfigModel.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

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