-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGSMasterRelease.h
53 lines (42 loc) · 1.14 KB
/
GSMasterRelease.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// GSMasterRelease.h
// DoctorTunes
//
// Created by Diego Trinciarelli on 09/09/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "DiscoGsObject.h"
#import "GSArtist.h"
#import "GSTrack.h"
#import "GSImage.h"
#import "GSEntity.h"
#import "GSFormat.h"
#import "GSVideo.h"
#import "GSVersion.h"
@interface GSMasterRelease : DiscoGsObject
{
NSString * ID;
NSString * main_release;
NSString * notes;
NSString * year;
NSMutableArray * styles;
NSMutableArray * genres;
NSMutableArray * videos;
NSMutableArray * versions;
NSMutableArray * artists;
NSMutableArray * images;
NSMutableArray * tracklist;
}
@property (readonly) NSString * ID;
@property (readonly) NSString * main_release;
@property (readonly) NSString * notes;
@property (readonly) NSString * year;
@property (readonly) NSArray * styles;
@property (readonly) NSArray * genres;
@property (readonly) NSArray * videos;
@property (readonly) NSArray * versions;
@property (readonly) NSArray * artists;
@property (readonly) NSArray * images;
@property (readonly) NSArray * tracklist;
@end