-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDevice.h
More file actions
29 lines (23 loc) · 711 Bytes
/
Copy pathDevice.h
File metadata and controls
29 lines (23 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// Device.h
// data_m
//
// Created by Mike Fluff on 21.04.11.
// Copyright (c) 2011 Altell ltd. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
@class Interface, Tests;
@interface Device : NSManagedObject {
@private
}
@property (nonatomic, retain) NSString * manageip;
@property (nonatomic, retain) NSString * id;
@property (nonatomic, retain) NSNumber * links;
@property (nonatomic, retain) NSString * type;
@property (nonatomic, retain) NSNumber * isServer;
@property (nonatomic, retain) NSString * login;
@property (nonatomic, retain) NSString * password;
@property (nonatomic, retain) NSSet* interface;
@property (nonatomic, retain) Tests * tests;
@end