2023-07-06 16:54:13 +08:00
|
|
|
//
|
|
|
|
// YMMineAnchorFansTeamModel.h
|
|
|
|
// YUMI
|
|
|
|
//
|
|
|
|
// Created by YUMI on 2022/4/8.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2023-11-15 17:25:09 +08:00
|
|
|
@interface XPMineAnchorFansTeamModel : PIBaseModel
|
2023-07-06 16:54:13 +08:00
|
|
|
|
2023-07-14 18:50:55 +08:00
|
|
|
///头像
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, copy) NSString *anchorAvatar;
|
2023-07-14 18:50:55 +08:00
|
|
|
///粉丝团id
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, assign) NSInteger teamId;
|
2023-07-14 18:50:55 +08:00
|
|
|
///粉丝团uid
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, assign) NSInteger teamUid;
|
2023-07-14 18:50:55 +08:00
|
|
|
///粉丝团名称
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, copy) NSString *anchorNick;
|
2023-07-14 18:50:55 +08:00
|
|
|
///粉丝团铭牌
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, copy) NSString *icon;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|