Moved IImageUrlGenerator and implementation into more appropriate enamespace

This commit is contained in:
Andy Butland
2020-03-24 09:37:46 +01:00
parent bcc8dff862
commit b67c3dfa04
23 changed files with 27 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
using Umbraco.Core.Models;
namespace Umbraco.Core.Media
{
public interface IImageUrlGenerator
{
string GetImageUrl(ImageUrlGenerationOptions options);
}
}