YapDatabase/Examples/Sample Data/Person.h
2016-06-21 15:17:10 -07:00

12 lines
251 B
Objective-C

#import <Foundation/Foundation.h>
@interface Person : NSObject <NSCoding>
- (id)initWithName:(NSString *)name uuid:(NSString *)uuid;
@property (nonatomic, copy, readonly) NSString *name;
@property (nonatomic, copy, readonly) NSString *uuid;
@end