Renamed Dto objects

Updated Fody
Renamed Dto objects
This commit is contained in:
ScottIsAFool
2013-02-21 17:50:46 +00:00
parent fbf963b68f
commit ec621df5f6
69 changed files with 262 additions and 262 deletions

View File

@@ -1,4 +1,4 @@
using MediaBrowser.Model.DTO;
using MediaBrowser.Model.Dto;
using System.ComponentModel.Composition;
namespace MediaBrowser.UI.Playback.ExternalPlayer
@@ -23,7 +23,7 @@ namespace MediaBrowser.UI.Playback.ExternalPlayer
/// </summary>
/// <param name="item">The item.</param>
/// <returns><c>true</c> if this instance can play the specified item; otherwise, <c>false</c>.</returns>
public override bool CanPlay(DtoBaseItem item)
public override bool CanPlay(BaseItemDto item)
{
return false;
}