-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArticleData.h
35 lines (31 loc) · 981 Bytes
/
ArticleData.h
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
//
// ArticleData.h
// spires
//
// Created by Yuji on 11/27/09.
// Copyright 2009 Y. Tachikawa. All rights reserved.
//
#import <CoreData/CoreData.h>
@class Article;
@interface ArticleData : NSManagedObject {
}
@property (retain) NSString * abstract;
@property (retain) NSString * arxivCategory;
@property (retain) NSString * collaboration;
@property (retain) NSString * comments;
@property (retain) NSDate * date;
@property (retain) NSString * doi;
@property (retain) NSString * eprint;
@property (retain) NSData* extraURLs;
@property (retain) NSString* longishAuthorListForEA;
@property (retain) NSString * memo;
@property (retain) NSNumber * pages;
@property (retain) NSData* pdfAlias;
@property (retain) NSString*shortishAuthorList;
@property (retain) NSString * spicite;
@property (retain) NSNumber * spiresKey;
@property (retain) NSString* texKey;
@property (retain) NSString * title;
@property (retain) NSNumber * version;
@property (retain) Article* article;
@end