mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
27 lines
416 B
Objective-C
27 lines
416 B
Objective-C
//
|
|
// App.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 7/10/15.
|
|
// Copyright © 2015 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
@class Host;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface App : NSManagedObject
|
|
|
|
@property BOOL isRunning;
|
|
|
|
- (NSComparisonResult)compareName:(App *)other;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#import "App+CoreDataProperties.h"
|