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 |
|
8 |
namespace libxmltv.Interfaces |
9 |
{ |
10 |
public interface IXMLTV_LOADER |
11 |
{ |
12 |
FileInfo XmlFile { get; } |
13 |
XDocument XmlDoc { get; } |
14 |
} |
15 |
public interface IXMLTV_PARSER |
16 |
{ |
17 |
IXMLTV_LOADER XMLTV_LOADER { get; } |
18 |
void TestParse(); |
19 |
IXMLTVSource Source { get; } |
20 |
} |
21 |
|
22 |
public interface IXMLTVSource |
23 |
{ |
24 |
string SourceName { get; } |
25 |
string GeneratorName { get; } |
26 |
string GeneratorUrl { get; } |
27 |
string ToString(); |
28 |
} |
29 |
} |