Files
peko-ios/YuMi/Modules/YMMine/View/Noble/Model/NobleAuthInfo.h
2024-03-29 19:18:58 +08:00

38 lines
958 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NobleAuthInfo.h
// xplan-ios
//
// Created by GreenLand on 2022/1/3.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NobleAuthInfo : PIBaseModel
///特权短描述
@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;
@end
NS_ASSUME_NONNULL_END