Move non-CoreData backed fields out of CoreData objects

This commit is contained in:
Cameron Gutman
2015-12-01 20:36:08 -08:00
parent 5ea92a7b48
commit bfa4856bbe
8 changed files with 20 additions and 32 deletions
-10
View File
@@ -10,18 +10,8 @@
#import <CoreData/CoreData.h>
#import "Utils.h"
NS_ASSUME_NONNULL_BEGIN
@interface Host : NSManagedObject
@property (nonatomic) BOOL online;
@property (nonatomic) PairState pairState;
@property (nonatomic) NSString * activeAddress;
- (NSComparisonResult)compareName:(Host *)other;
@end
NS_ASSUME_NONNULL_END
#import "Host+CoreDataProperties.h"