// // 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 *typeEnumList; @end NS_ASSUME_NONNULL_END