19 lines
279 B
Objective-C
19 lines
279 B
Objective-C
//
|
|
// XPMineGuildTableViewCell.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/9/19.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@class GuildInfo;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineGuildTableViewCell : UITableViewCell
|
|
|
|
@property (nonatomic, strong) GuildInfo *info;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|