1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.IO; |
6 |
using System.Xml.Linq; |
7 |
using libxmltv.Core; |
8 |
|
9 |
namespace libxmltv.Interfaces |
10 |
{ |
11 |
public interface IXMLTV_LOADER |
12 |
{ |
13 |
FileInfo XmlFile { get; } |
14 |
XDocument XmlDoc { get; } |
15 |
} |
16 |
public interface IXMLTV_PARSER |
17 |
{ |
18 |
IXMLTV_LOADER XMLTV_LOADER { get; } |
19 |
void TestParse(); |
20 |
IXMLTVSource Source { get; } |
21 |
Dictionary<string, IXMLTVChannel> Channels { get; } |
22 |
Dictionary<int, IXMLTVProgram> Programs { get; } |
23 |
} |
24 |
|
25 |
public interface IXMLTVSource |
26 |
{ |
27 |
string SourceName { get; } |
28 |
string GeneratorName { get; } |
29 |
string GeneratorUrl { get; } |
30 |
string ToString(); |
31 |
} |
32 |
public interface IXMLTVChannel |
33 |
{ |
34 |
string Id { get; } |
35 |
int Number { get; } |
36 |
string CallSign { get; } |
37 |
string Name { get; } |
38 |
string ToString(); |
39 |
} |
40 |
public interface IXMLTVProgram |
41 |
{ |
42 |
int Id { get; } |
43 |
DateTime Start { get; } |
44 |
DateTime Stop { get; } |
45 |
IXMLTVChannel Channel { get; } |
46 |
string Title { get; } |
47 |
string SubTitle { get; } |
48 |
string Description { get; } |
49 |
string ToString(); |
50 |
} |
51 |
} |