38 lines
1.0 KiB
Objective-C
38 lines
1.0 KiB
Objective-C
//
|
|
// ClanInfoModel.h
|
|
// YuMi
|
|
//
|
|
// Created by YuMi on 2022/4/6.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ClanInfoModel : PIBaseModel
|
|
///家族id
|
|
@property (nonatomic, copy) NSString *cid;
|
|
/// 族长 uid
|
|
@property (nonatomic, copy) NSString *elderUid;
|
|
/// 族长音游号
|
|
@property (nonatomic, copy) NSString *elderErbanNo;
|
|
/// 族长 名称
|
|
@property (nonatomic, copy) NSString *elderName;
|
|
/// 家族 名称
|
|
@property (nonatomic, copy) NSString *name;
|
|
///家族头像
|
|
@property (nonatomic, copy) NSString *avatar;
|
|
///是否是家族族长
|
|
@property (nonatomic, assign) BOOL userIsElder;
|
|
///家族等级图片
|
|
@property (nonatomic, copy) NSString *levelIcon;
|
|
///是否有开通会员兑换权限的功能
|
|
@property (nonatomic,assign) BOOL elderHasExchangeManagerAuth;
|
|
@property(nonatomic,copy) NSString *myFamilyUrl;
|
|
@property(nonatomic,copy) NSString *familyListUrl;
|
|
@property(nonatomic,copy) NSString *familyId;
|
|
@property(nonatomic,copy) NSString *ownerAvatar;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|