22 lines
381 B
Objective-C
22 lines
381 B
Objective-C
//
|
|
// LinkConfig.h
|
|
// ShenQi
|
|
//
|
|
// Created by Yao on 2024/12/21.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LinkConfig : NSObject
|
|
|
|
@property (nonatomic, assign) BOOL isGoBack;
|
|
@property (nonatomic, strong) NSString *name;
|
|
@property (nonatomic, strong) NSString *icon;
|
|
@property (nonatomic, strong) NSString *linkUrl;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|