
- 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
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
|