This commit is contained in:
Yao
2024-12-25 09:41:16 +08:00
parent 654d456c7d
commit 33a7b58a49
33 changed files with 274 additions and 214 deletions

View File

@@ -0,0 +1,21 @@
//
// 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