--- trunk/libxmltv/Interfaces/Interfaces.cs 2013/03/07 11:11:20 24 +++ trunk/libxmltv/Interfaces/Interfaces.cs 2013/03/07 11:36:00 25 @@ -16,5 +16,14 @@ namespace libxmltv.Interfaces { IXMLTV_LOADER XMLTV_LOADER { get; } void TestParse(); + IXMLTVSource Source { get; } + } + + public interface IXMLTVSource + { + string SourceName { get; } + string GeneratorName { get; } + string GeneratorUrl { get; } + string ToString(); } }