2012-07-24 10:06:07 -01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2012-08-01 08:13:45 -01:00
|
|
|
|
namespace Umbraco.Core
|
2012-07-24 10:06:07 -01:00
|
|
|
|
{
|
2012-08-01 08:37:18 -01:00
|
|
|
|
internal interface IThumbnailProvider
|
2012-07-24 10:06:07 -01:00
|
|
|
|
{
|
|
|
|
|
|
int Priority { get; }
|
|
|
|
|
|
bool CanProvideThumbnail(string fileUrl);
|
|
|
|
|
|
string GetThumbnailUrl(string fileUrl);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|