diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-01 00:11:04 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-01 00:11:04 -0400 |
| commit | 20d35a640570eab1a47e4bd8c156f1e8aeb7db2d (patch) | |
| tree | 4464240863af1e8e6fa811583bb82ad8864dd3ab /MediaBrowser.Model/LiveTv | |
| parent | d1e045f66274e8ec240557d32f484d8640b05edc (diff) | |
isolate .net specific methods in model project
Diffstat (limited to 'MediaBrowser.Model/LiveTv')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/ChannelInfoDto.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/ChannelType.cs (renamed from MediaBrowser.Model/LiveTv/LiveTvChannelType.cs) | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/RecordingInfoDto.cs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Model/LiveTv/ChannelInfoDto.cs b/MediaBrowser.Model/LiveTv/ChannelInfoDto.cs index 8be745a127..2f244b4e39 100644 --- a/MediaBrowser.Model/LiveTv/ChannelInfoDto.cs +++ b/MediaBrowser.Model/LiveTv/ChannelInfoDto.cs @@ -62,7 +62,7 @@ namespace MediaBrowser.Model.LiveTv /// Gets or sets the type of the channel. /// </summary> /// <value>The type of the channel.</value> - public LiveTvChannelType ChannelType { get; set; } + public ChannelType ChannelType { get; set; } /// <summary> /// Gets or sets the type. diff --git a/MediaBrowser.Model/LiveTv/LiveTvChannelType.cs b/MediaBrowser.Model/LiveTv/ChannelType.cs index d447f73a27..bca16f8396 100644 --- a/MediaBrowser.Model/LiveTv/LiveTvChannelType.cs +++ b/MediaBrowser.Model/LiveTv/ChannelType.cs @@ -4,7 +4,7 @@ namespace MediaBrowser.Model.LiveTv /// <summary> /// Enum ChannelType /// </summary> - public enum LiveTvChannelType + public enum ChannelType { /// <summary> /// The TV diff --git a/MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs b/MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs index 75fcb7a10e..ffd6db7083 100644 --- a/MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs +++ b/MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs @@ -10,7 +10,7 @@ namespace MediaBrowser.Model.LiveTv /// Gets or sets the type of the channel. /// </summary> /// <value>The type of the channel.</value> - public LiveTvChannelType? ChannelType { get; set; } + public ChannelType? ChannelType { get; set; } /// <summary> /// Gets or sets a value indicating whether this instance is favorite. diff --git a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs index d03e1a4e48..58bca06bd2 100644 --- a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs +++ b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs @@ -164,7 +164,7 @@ namespace MediaBrowser.Model.LiveTv /// Gets or sets the type of the channel. /// </summary> /// <value>The type of the channel.</value> - public LiveTvChannelType ChannelType { get; set; } + public ChannelType ChannelType { get; set; } /// <summary> /// Gets or sets the official rating. |
