--- trunk/libxmltv/Interfaces/Interfaces.cs 2013/03/07 12:11:41 27 +++ trunk/libxmltv/Interfaces/Interfaces.cs 2013/03/07 12:51:53 28 @@ -31,14 +31,21 @@ namespace libxmltv.Interfaces } public interface IXMLTVChannel { - string ChannelId { get; } - int ChannelNumber { get; } - string ChannelCallSign { get; } - string ChannelName { get; } + string Id { get; } + int Number { get; } + string CallSign { get; } + string Name { get; } + string ToString(); } public interface IXMLTVProgram { - int ProgramId { get; } + int Id { get; } + DateTime Start { get; } + DateTime Stop { get; } + IXMLTVChannel Channel { get; } + string Title { get; } + string SubTitle { get; } + string Description { get; } + string ToString(); } -} - +} \ No newline at end of file