-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMusicBrainzXMLDocumentRelease.cs
More file actions
38 lines (35 loc) · 998 Bytes
/
MusicBrainzXMLDocumentRelease.cs
File metadata and controls
38 lines (35 loc) · 998 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MusicBrainzXML
{
class MusicBrainzXMLDocumentRelease
{
public string artist;
public string artistId;
public string releaseTitle;
public string releaseASIN;
public string releaseID;
public string releaseType;
public string ext_score;
public string[][] releaseEventList = new string[50][]; //[][0:label;1->10:attributes]
public string discListCount;
public string trackListCount;
public MusicBrainzXMLDocumentRelease()
{
for (int a = 0; a < 50; a++)
releaseEventList[a] = new string[10];
}
}
class MusicBrainzXMLDocumentArtist
{
public string name;
public string sort_name;
public string birth;
public string death;
public string type;
public string artistId;
public string ext_score;
}
}