YMEnumeration.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //
  2. // YMEnumeration.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/16.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. /** 音视频匹配类型 */
  10. typedef NS_ENUM(NSUInteger, YMAudioVideoMatchingType) {
  11. /** 视频*/
  12. YMAudioVideoMatchingTypeVideo = 0,
  13. /** 音频*/
  14. YMAudioVideoMatchingTypeAudio,
  15. };
  16. /** 设置功能类型 */
  17. typedef NS_ENUM(NSUInteger, YMSettingFunctionsType) {
  18. /** 账号绑定*/
  19. YMSettingFunctionsTypeAccountBinding = 19235,
  20. /** 美颜设置*/
  21. YMSettingFunctionsTypeBeautySetting,
  22. /** 聊天通知(消息通知)*/
  23. YMSettingFunctionsTypeChatNotification,
  24. /** 打招呼设置*/
  25. YMSettingFunctionsTypeGreetingSetting,
  26. /** 收费设置*/
  27. YMSettingFunctionsTypeFeesSetting,
  28. /** 青少年模式*/
  29. YMSettingFunctionsTypeAdolescentModel,
  30. /** 黑名单*/
  31. YMSettingFunctionsTypeBlackList,
  32. /** 清除缓存*/
  33. YMSettingFunctionsTypeClearCache,
  34. /** 去评分*/
  35. YMSettingFunctionsTypeGotoRating,
  36. /** 注销账号*/
  37. YMSettingFunctionsTypeCancellationAccount,
  38. /** 关于我们*/
  39. YMSettingFunctionsTypeAboutUs,
  40. /** 退出登录*/
  41. YMSettingFunctionsTypeLogOut,
  42. };
  43. /** 消息通知功能类型 */
  44. typedef NS_ENUM(NSUInteger, YMChatNotificationFunctionsType) {
  45. /** 个性化推荐*/
  46. YMChatNotificationFunctionsTypePersonalizedRecommendation = 23296,
  47. /** 缘分牵线*/
  48. YMChatNotificationFunctionsTypePredestinedAffinity,
  49. /** 点赞通知*/
  50. YMChatNotificationFunctionsTypeLikesNotification,
  51. /** 声音*/
  52. YMChatNotificationFunctionsTypeSound,
  53. /** 振动*/
  54. YMChatNotificationFunctionsTypeVibrate,
  55. };
  56. /** 收费设置功能类型 */
  57. typedef NS_ENUM(NSUInteger, YMFeesSettingFunctionsType) {
  58. /** 消息价格*/
  59. YMFeesSettingFunctionsTypeMessagePrice = 26321,
  60. /** 语音价格*/
  61. YMFeesSettingFunctionsTypeVoicePrice,
  62. /** 视频价格*/
  63. YMFeesSettingFunctionsTypeVideoPrice
  64. };
  65. /** 关于我们功能类型 */
  66. typedef NS_ENUM(NSUInteger, YMAboutUsFunctionsType) {
  67. /** 用户协议*/
  68. YMAboutUsFunctionsTypeUserAgreement = 21349,
  69. /** 隐私保护*/
  70. YMAboutUsFunctionsTypePrivacyAgreement,
  71. /** 第三方共享个人信息清单*/
  72. YMAboutUsFunctionsTypeThirdPartyPersonalInfoList,
  73. /** 权限申请说明*/
  74. YMAboutUsFunctionsTypePermissionRequestInstruction,
  75. /** 检测版本更新*/
  76. YMAboutUsFunctionsTypeDetectingVersionUpdates,
  77. };