mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-02 15:56:21 +00:00
26 lines
627 B
Objective-C
26 lines
627 B
Objective-C
//
|
|
// 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
|