// // ContentSecretaryModel.h // xplan-ios // // Created by 冯硕 on 2022/4/22. // #import NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSInteger, SecretaryRouterType) { ///房间 SecretaryRouterType_Room = 1, ///跳转网页 SecretaryRouterType_H5 = 2, ///钱包页 SecretaryRouterType_Purse = 3, ///充值页 SecretaryRouterType_Recharge = 5, ///用户信息 SecretaryRouterType_UserInfo = 6, ///座驾 SecretaryRouterType_Car = 7, ///头饰 SecretaryRouterType_Headwear = 8, ///铭牌 SecretaryRouterType_Nameplate = 9, ///设置密码 SecretaryRouterType_Set_Password = 53, ///贵族中心 SecretaryRouterType_Nobel_Center = 54, ///资料卡装扮 SecretaryRouterType_User_Card = 55, ///贵族气泡 SecretaryRouterType_Nobel_Bubble = 56, }; @interface ContentSecretaryModel : NSObject ///最近回话列表需要显示的内容 推送的内容 @property (nonatomic,copy) NSString *msg; ///私聊消息需要显示的内容 @property (nonatomic,copy) NSString *title; ///跳转的类型 @property (nonatomic,assign) SecretaryRouterType routerType; ///(转跳当前界面需要传的参) @property (nonatomic,strong) NSString *routerValue; @end NS_ASSUME_NONNULL_END