23 lines
375 B
Objective-C
23 lines
375 B
Objective-C
//
|
|
// GuildInfo.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/9/19.
|
|
//
|
|
|
|
#import "PIBaseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface GuildInfo : PIBaseModel
|
|
|
|
@property (nonatomic, copy) NSString *avatar;
|
|
@property (nonatomic, copy) NSString *guildName;
|
|
@property (nonatomic, assign) NSInteger erbanNo;
|
|
@property (nonatomic, assign) NSInteger guildId;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|