7 |
{ |
{ |
8 |
public static class XMLTVConstants |
public static class XMLTVConstants |
9 |
{ |
{ |
10 |
public const string ROOT_ELEMENT = "tv"; |
#region Root Constants |
11 |
public const string CHANNEL_ELEMENT = "channel"; |
public static class Root |
12 |
public const string PROGRAM_ELEMENT = "programme"; |
{ |
13 |
|
public const string RootElement = "tv"; |
14 |
|
} |
15 |
|
#endregion |
16 |
|
|
17 |
#region Source Constants |
#region Source Constants |
18 |
public static class Source |
public static class Source |
25 |
#region Channel Constants |
#region Channel Constants |
26 |
public static class Channels |
public static class Channels |
27 |
{ |
{ |
28 |
|
public const string RootElement = "channel"; |
29 |
public const string ChannelId = "id"; |
public const string ChannelId = "id"; |
30 |
public const string ChannelDisplayName = "display-name"; |
public const string ChannelDisplayName = "display-name"; |
31 |
} |
} |
33 |
#region Program Constants |
#region Program Constants |
34 |
public static class Programs |
public static class Programs |
35 |
{ |
{ |
36 |
|
public const string RootElement = "programme"; |
37 |
public const string ProgramStart = "start"; |
public const string ProgramStart = "start"; |
38 |
public const string ProgramStop = "stop"; |
public const string ProgramStop = "stop"; |
39 |
public const string ProgramChannelId = CHANNEL_ELEMENT; |
public const string ProgramChannelId = XMLTVConstants.Channels.RootElement; |
40 |
public const string ProgramTitle = "title"; |
public const string ProgramTitle = "title"; |
41 |
public const string ProgramSubTitle = "sub-title"; |
public const string ProgramSubTitle = "sub-title"; |
42 |
public const string ProgramDescription = "desc"; |
public const string ProgramDescription = "desc"; |