mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-08 02:14:08 +08:00
14 lines
326 B
Objective-C
14 lines
326 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "Person.h"
|
|
|
|
@interface UserManager : NSObject
|
|
|
|
@property (nonatomic, strong) NSMutableArray<Person *> *users;
|
|
|
|
+ (UserManager *)sharedManager;
|
|
- (void)addUser:(Person *)user;
|
|
- (Person *)findUserByName:(NSString *)name;
|
|
- (void)removeUser:(Person *)user;
|
|
- (NSInteger)userCount;
|
|
|
|
@end |