-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathTab.h
More file actions
39 lines (33 loc) · 947 Bytes
/
Tab.h
File metadata and controls
39 lines (33 loc) · 947 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
30
31
32
33
34
35
36
37
38
//
// Tab.h
// ARIS
//
// Created by Brian Thiel on 8/16/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Tab : NSObject
{
long tab_id;
NSString *type;
NSString *name;
long icon_media_id;
long content_id;
NSString *info;
long sort_index;
long requirement_root_package_id;
bool showNotesOnMap;
}
@property (nonatomic, assign) long tab_id;
@property (nonatomic, strong) NSString *type;
@property (nonatomic, strong) NSString *name;
@property (nonatomic, assign) long icon_media_id;
@property (nonatomic, assign) long content_id;
@property (nonatomic, strong) NSString *info;
@property (nonatomic, assign) long sort_index;
@property (nonatomic, assign) long requirement_root_package_id;
@property (nonatomic, assign) bool showNotesOnMap;
- (id) initWithDictionary:(NSDictionary *)dict;
- (NSString *) serialize;
- (NSString *) keyString;
@end