Files
yinmeng-ios-store/yinmeng-ios/yinmeng-ios/Main/Mine/Model/MewMineSettingItemModel.h
2024-01-18 14:07:52 +08:00

32 lines
781 B
Objective-C

//
// MewMineSettingItemModel.h
// mew-ios
//
// Created by 触海 on 2023/11/9.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger, MewMineSettingItemType){
MewMineSettingItemType_Phone, ///手机号
MewMineSettingItemType_Login_Password,///登录密码
MewMineSettingItemType_About_Us,///关于我们
MewMineSettingItemType_Cancel_Account, ///注销账号
MewMineSettingItemType_Pay,///充值
MewMineSettingItemType_MyRoom ,//我的房间
};
@interface MewMineSettingItemModel : NSObject
///标题
@property (nonatomic,copy) NSString *title;
///副标题
@property (nonatomic,copy,) NSString * __nullable subTitle;
///类型
@property (nonatomic,assign) MewMineSettingItemType type;
@end
NS_ASSUME_NONNULL_END