mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-04-11 02:06:11 +00:00
19 lines
347 B
Objective-C
19 lines
347 B
Objective-C
//
|
|
// Hosts.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 10/28/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
|
|
@interface Hosts : NSManagedObject
|
|
|
|
@property (nonatomic, retain) NSString * address;
|
|
@property (nonatomic, retain) NSString * name;
|
|
|
|
@end
|