Moves many of the MVC extension methods into the Umbraco.Web.Mvc namespace and tidies up a few other class's namespaces
10 lines
193 B
C#
10 lines
193 B
C#
namespace Umbraco.Core.Media
|
|
{
|
|
public interface IThumbnailProvider
|
|
{
|
|
bool CanProvideThumbnail(string fileUrl);
|
|
string GetThumbnailUrl(string fileUrl);
|
|
}
|
|
|
|
}
|