diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-31 11:13:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-31 11:13:07 -0400 |
| commit | df83adbb71af569468ec58645b3e52d8c4e6778b (patch) | |
| tree | c21b7143df258740b2d06a4bad00bf08587ea02e /MediaBrowser.Model/LiveTv | |
| parent | 704571605b6626794695add070071bf4b89dd94c (diff) | |
rename channel query objects
Diffstat (limited to 'MediaBrowser.Model/LiveTv')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/ChannelInfoDto.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs (renamed from MediaBrowser.Model/LiveTv/ChannelQuery.cs) | 4 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/LiveTvChannelType.cs (renamed from MediaBrowser.Model/LiveTv/ChannelType.cs) | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/LiveTv/RecordingInfoDto.cs | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/MediaBrowser.Model/LiveTv/ChannelInfoDto.cs b/MediaBrowser.Model/LiveTv/ChannelInfoDto.cs index 2f244b4e39..8be745a127 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 ChannelType ChannelType { get; set; } + public LiveTvChannelType ChannelType { get; set; } /// <summary> /// Gets or sets the type. diff --git a/MediaBrowser.Model/LiveTv/ChannelQuery.cs b/MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs index 6d986d3370..75fcb7a10e 100644 --- a/MediaBrowser.Model/LiveTv/ChannelQuery.cs +++ b/MediaBrowser.Model/LiveTv/LiveTvChannelQuery.cs @@ -4,13 +4,13 @@ namespace MediaBrowser.Model.LiveTv /// <summary> /// Class ChannelQuery. /// </summary> - public class ChannelQuery + public class LiveTvChannelQuery { /// <summary> /// Gets or sets the type of the channel. /// </summary> /// <value>The type of the channel.</value> - public ChannelType? ChannelType { get; set; } + public LiveTvChannelType? ChannelType { get; set; } /// <summary> /// Gets or sets a value indicating whether this instance is favorite. diff --git a/MediaBrowser.Model/LiveTv/ChannelType.cs b/MediaBrowser.Model/LiveTv/LiveTvChannelType.cs index bca16f8396..d447f73a27 100644 --- a/MediaBrowser.Model/LiveTv/ChannelType.cs +++ b/MediaBrowser.Model/LiveTv/LiveTvChannelType.cs @@ -4,7 +4,7 @@ namespace MediaBrowser.Model.LiveTv /// <summary> /// Enum ChannelType /// </summary> - public enum ChannelType + public enum LiveTvChannelType { /// <summary> /// The TV diff --git a/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs b/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs index 58bca06bd2..d03e1a4e48 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 ChannelType ChannelType { get; set; } + public LiveTvChannelType ChannelType { get; set; } /// <summary> /// Gets or sets the official rating. |
