2023-07-14 18:50:55 +08:00
|
|
|
|
//
|
|
|
|
|
// NobleAuthInfo.h
|
|
|
|
|
// xplan-ios
|
|
|
|
|
//
|
|
|
|
|
// Created by GreenLand on 2022/1/3.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
2023-11-15 17:25:09 +08:00
|
|
|
|
@interface NobleAuthInfo : PIBaseModel
|
2023-07-14 18:50:55 +08:00
|
|
|
|
|
|
|
|
|
///特权短描述
|
|
|
|
|
@property (nonatomic, copy) NSString *authDesc;
|
|
|
|
|
///特权icon
|
|
|
|
|
@property (nonatomic, copy) NSString *authIcon;
|
|
|
|
|
///特权长描述
|
|
|
|
|
@property (nonatomic, copy) NSString *authIntro;
|
|
|
|
|
///特权名称
|
|
|
|
|
@property (nonatomic, copy) NSString *authName;
|
|
|
|
|
|
|
|
|
|
///特权类型:1. 铭牌 2. 头饰 3. 座驾 4. 礼物 5.资料卡 6. 财富值经验加成 7.表情 8.麦序光圈 9.麦位昵称颜色 10. 好友红名 11.房间小喇叭 12.进场特效 13 隐身进房
|
|
|
|
|
@property (nonatomic, assign) NSInteger authType;
|
|
|
|
|
///描述图片
|
|
|
|
|
@property (nonatomic, copy) NSString *descPic;
|
|
|
|
|
///id
|
|
|
|
|
@property (nonatomic, assign) NSInteger id;
|
|
|
|
|
///seq
|
|
|
|
|
@property (nonatomic, assign) NSInteger seq;
|
|
|
|
|
///status
|
|
|
|
|
@property (nonatomic, assign) NSInteger status;
|
|
|
|
|
|
2024-03-29 19:18:58 +08:00
|
|
|
|
|
2023-07-14 18:50:55 +08:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|