diff --git a/yinmeng-ios/yinmeng-ios/Base/Tool/ThemeColor/Swift/MewAppColor.swift b/yinmeng-ios/yinmeng-ios/Base/Tool/ThemeColor/Swift/MewAppColor.swift deleted file mode 100644 index 2c1a6d7..0000000 --- a/yinmeng-ios/yinmeng-ios/Base/Tool/ThemeColor/Swift/MewAppColor.swift +++ /dev/null @@ -1,12 +0,0 @@ -// -// MewAppColor.swift -// yinmeng-ios -// -// Created by duoban on 2024/1/15. -// - -import UIKit - -class MewAppColor: UIColor { - -} diff --git a/yinmeng-ios/yinmeng-ios/Main/Message/Presenter/CHMessagePresenter.h b/yinmeng-ios/yinmeng-ios/Main/Message/Presenter/CHMessagePresenter.h deleted file mode 100644 index 1057d84..0000000 --- a/yinmeng-ios/yinmeng-ios/Main/Message/Presenter/CHMessagePresenter.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// CHMessagePresenter.h -// mew-ios -// -// Created by 触海 on 2023/11/16. -// - -#import "BaseMvpPresenter.h" - -NS_ASSUME_NONNULL_BEGIN - -@interface CHMessagePresenter : BaseMvpPresenter -- (void)getChatLimitReceiverUid:(NSString *)receiverUid; - -/// 获取用户信息 -/// @param uid 用户uid -- (void)getUserInfo:(NSString *)uid; -///是否关注当前用户 -- (void)getFansLike:(NSString *)likeUid; -/// 关注用户 -/// @param targetUid 目标用户的uid -- (void)mew_attentionUser:(NSString *)targetUid; -@end - -NS_ASSUME_NONNULL_END diff --git a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.h b/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.h deleted file mode 100644 index 866236c..0000000 --- a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.h +++ /dev/null @@ -1,36 +0,0 @@ -// -// MewFansInfoModel.h -// mew-ios -// -// Created by 触海 on 2023/11/18. -// - -#import -#import "MewEnum.h" - -NS_ASSUME_NONNULL_BEGIN - -@interface MewFansInfoModel : NSObject -///头像 -@property (nonatomic,copy) NSString *avatar; -///姓名 -@property (nonatomic,copy) NSString *nick; -///uid -@property (nonatomic,copy) NSString *uid; -///性别 -@property (nonatomic,assign) MewSexType gender; -///类型 -@property (nonatomic,assign) NSInteger defUser; -///魅力等级 -@property (nonatomic,copy) NSString *charmUrl; -///等级 -@property (nonatomic,copy) NSString *experUrl; -///签名 -@property (nonatomic,copy) NSString *userDesc; -///是否有效 -@property (nonatomic,assign) BOOL valid; -///当前用户所在的房间 映射的字段 -@property (nonatomic,copy) NSString *userInRoomUid; -@end - -NS_ASSUME_NONNULL_END diff --git a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.m b/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.m deleted file mode 100644 index 95bfb0b..0000000 --- a/yinmeng-ios/yinmeng-ios/Main/Mine/Model/Friend/MewFansInfoModel.m +++ /dev/null @@ -1,12 +0,0 @@ -// -// MewFansInfoModel.m -// mew-ios -// -// Created by 触海 on 2023/11/18. -// - -#import "MewFansInfoModel.h" - -@implementation MewFansInfoModel - -@end