10 lines
179 B
C#
10 lines
179 B
C#
using Umbraco.Core.Models;
|
|
|
|
namespace Umbraco.Core.Media
|
|
{
|
|
public interface IImageUrlGenerator
|
|
{
|
|
string GetImageUrl(ImageUrlGenerationOptions options);
|
|
}
|
|
}
|