47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
|
|
//
|
||
|
|
// YYApplyUpMicModel.h
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/4/27.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
@class YYApplyUpUser;
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYApplyUpMicModel : NSObject
|
||
|
|
|
||
|
|
@property(nonatomic, copy) NSString *priority_count;
|
||
|
|
@property(nonatomic, copy) NSString *priority_total_count;
|
||
|
|
@property(nonatomic, strong) NSArray *priority_aisle;//优先通道
|
||
|
|
|
||
|
|
@property(nonatomic, copy) NSString *common_count;
|
||
|
|
@property(nonatomic, copy) NSString *common_total_count;
|
||
|
|
@property(nonatomic, strong) NSArray *common_aisle;//公共通道
|
||
|
|
|
||
|
|
@property(nonatomic, copy) NSString *gid;
|
||
|
|
@property(nonatomic, copy) NSString *gift_name;
|
||
|
|
@property(nonatomic, copy) NSString *base_image;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface YYApplyUpUser : NSObject
|
||
|
|
|
||
|
|
@property(nonatomic, copy) NSString *uid;
|
||
|
|
@property(nonatomic, copy) NSString *id;//通道列表id
|
||
|
|
@property(nonatomic, copy) NSString *rid;
|
||
|
|
@property(nonatomic, assign) NSInteger type;//类型 1普通 2优先
|
||
|
|
@property(nonatomic, copy) NSString *rank_value;
|
||
|
|
@property(nonatomic, copy) NSString *nick_name;
|
||
|
|
@property(nonatomic, copy) NSString *head_pic;
|
||
|
|
|
||
|
|
//前端添加
|
||
|
|
@property(nonatomic, assign) BOOL is_sel;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|