YMMineCommonFunctionsViewModel.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // YMMineCommonFunctionsViewModel.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/16.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "BAGridItemModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /** 常用功能类型 */
  11. typedef NS_ENUM(NSUInteger, YMCommonFunctionsType) {
  12. /** 邀请有奖*/
  13. YMCommonFunctionsTypeInvitingPrizes = 161237,
  14. /** 真人认证*/
  15. YMCommonFunctionsTypeRealPersonAccreditation,
  16. /** 排行榜*/
  17. YMCommonFunctionsTypeRankingList,
  18. /** 美颜设置*/
  19. YMCommonFunctionsTypeBeautySetting,
  20. /** 聊天价格*/
  21. YMCommonFunctionsTypeChatPrice,
  22. /** 我的账单*/
  23. YMCommonFunctionsTypeMyBill,
  24. /** 视频勿扰*/
  25. YMCommonFunctionsTypeVideoDoNotDisturb,
  26. /** 私信聊天*/
  27. YMCommonFunctionsTypePrivateLetterChat,
  28. /** 私信音效*/
  29. YMCommonFunctionsTypePrivateLetterSound,
  30. /** 个人主页*/
  31. YMCommonFunctionsTypePersonalPage,
  32. /** 在线客服*/
  33. YMCommonFunctionsTypeOnlineCustomerSupport,
  34. /** 合作洽谈*/
  35. YMCommonFunctionsTypePlatformStrategy,
  36. /** 系统设置*/
  37. YMCommonFunctionsTypeSystemSetting,
  38. /** 公会管理*/
  39. YMCommonFunctionsTypeGuildManagement,
  40. /** 打招呼*/
  41. YMCommonFunctionsTypeSayHello,
  42. };
  43. @interface YMMineCommonFunctionsViewModel : BAGridItemModel
  44. /// 常用功能类型
  45. @property (nonatomic, assign) YMCommonFunctionsType functionsType;
  46. @end
  47. NS_ASSUME_NONNULL_END