// // App+CoreDataProperties.h // Moonlight // // Created by Diego Waxemberg on 7/10/15. // Copyright © 2015 Limelight Stream. All rights reserved. // // Delete this file and regenerate it using "Create NSManagedObject Subclass…" // to keep your implementation up to date with your model. // #import "App.h" NS_ASSUME_NONNULL_BEGIN @interface App (CoreDataProperties) @property (nullable, nonatomic, retain) NSString *id; @property (nullable, nonatomic, retain) NSData *image; @property (nullable, nonatomic, retain) NSString *name; @property (nullable, nonatomic, retain) Host *host; @end NS_ASSUME_NONNULL_END