mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-09 02:24:11 +08:00
14 lines
365 B
Objective-C
14 lines
365 B
Objective-C
#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 |