added stub for roku remote controller

This commit is contained in:
Luke Pulverenti
2013-12-23 19:00:27 -05:00
parent 33e384daad
commit ce8f37de79
4 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
namespace MediaBrowser.Controller.LiveTv
{
/// <summary>
/// Class LiveTvException.
/// </summary>
public class LiveTvException : Exception
{
}
/// <summary>
/// Class LiveTvConflictException.
/// </summary>
public class LiveTvConflictException : LiveTvException
{
}
}

View File

@@ -112,6 +112,7 @@
<Compile Include="LiveTv\ChannelInfo.cs" />
<Compile Include="LiveTv\ILiveTvManager.cs" />
<Compile Include="LiveTv\ILiveTvService.cs" />
<Compile Include="LiveTv\LiveTvException.cs" />
<Compile Include="LiveTv\StreamResponseInfo.cs" />
<Compile Include="LiveTv\LiveTvProgram.cs" />
<Compile Include="LiveTv\LiveTvRecording.cs" />