mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
Refactor code structure for improved readability and maintainability
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface Person : NSObject
|
||||
|
||||
@property (nonatomic, strong) NSString *name;
|
||||
@property (nonatomic, assign) NSInteger age;
|
||||
@property (nonatomic, strong) NSString *email;
|
||||
|
||||
- (instancetype)initWithName:(NSString *)name age:(NSInteger)age;
|
||||
- (void)sayHello;
|
||||
- (void)updateEmail:(NSString *)email;
|
||||
+ (Person *)createDefaultPerson;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user