1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // YMMineCommonFunctionsViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/16.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "BAGridItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- /** 常用功能类型 */
- typedef NS_ENUM(NSUInteger, YMCommonFunctionsType) {
- /** 邀请有奖*/
- YMCommonFunctionsTypeInvitingPrizes = 161237,
- /** 真人认证*/
- YMCommonFunctionsTypeRealPersonAccreditation,
- /** 排行榜*/
- YMCommonFunctionsTypeRankingList,
- /** 美颜设置*/
- YMCommonFunctionsTypeBeautySetting,
- /** 聊天价格*/
- YMCommonFunctionsTypeChatPrice,
- /** 我的账单*/
- YMCommonFunctionsTypeMyBill,
- /** 视频勿扰*/
- YMCommonFunctionsTypeVideoDoNotDisturb,
- /** 私信聊天*/
- YMCommonFunctionsTypePrivateLetterChat,
- /** 私信音效*/
- YMCommonFunctionsTypePrivateLetterSound,
- /** 个人主页*/
- YMCommonFunctionsTypePersonalPage,
- /** 在线客服*/
- YMCommonFunctionsTypeOnlineCustomerSupport,
- /** 合作洽谈*/
- YMCommonFunctionsTypePlatformStrategy,
- /** 系统设置*/
- YMCommonFunctionsTypeSystemSetting,
- /** 公会管理*/
- YMCommonFunctionsTypeGuildManagement,
- /** 打招呼*/
- YMCommonFunctionsTypeSayHello,
- };
- @interface YMMineCommonFunctionsViewModel : BAGridItemModel
- /// 常用功能类型
- @property (nonatomic, assign) YMCommonFunctionsType functionsType;
- @end
- NS_ASSUME_NONNULL_END
|