Files
real-e-party-iOS/YuMi/Modules/YMMine/Model/XPMineUserInfoEditModel.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

45 lines
1.2 KiB
Objective-C

//
// XPMineUserInfoEditModel.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/23.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger, XPMineUserInfoEditType) {
XPMineUserInfoEditType_Avatar,///头像
XPMineUserInfoEditType_Nick,///名字
XPMineUserInfoEditType_Birth,///生日
XPMineUserInfoEditType_Photo,///相册
XPMineUserInfoEditType_UseDes,///用户描述
XPMineUserInfoEditType_Sound,///声音
XPMineUserInfoEditType_Tag,///标签
XPMineUserInfoEditType_Area,///地区
XPMineUserInfoEditType_CP_Animation,///cp 个人主页动画
XPMineUserInfoEditType_CP_Avatar,///cp 个人主页头像
};
@interface XPMineUserInfoEditModel : PIBaseModel
///类型
@property (nonatomic,assign) XPMineUserInfoEditType type;
///标题
@property (nonatomic,copy) NSString *title;
///副标题
@property (nonatomic,copy) NSString *subTitle;
///头像
@property (nonatomic,assign) BOOL isReview;
///头像
@property (nonatomic,copy) NSString *avatarUrl;
///相册
@property (nonatomic,copy) NSArray *photoArray;
@property (nonatomic, assign) BOOL isCPAnimation;
@property (nonatomic, assign) BOOL isCPAvatar;
@end
NS_ASSUME_NONNULL_END