Files
peko-ios/YuMi/Modules/YMMine/Model/XPMineUserInfoEditModel.h
2023-11-15 17:25:09 +08:00

40 lines
985 B
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,///地区
};
@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;
@end
NS_ASSUME_NONNULL_END