Skip to content

Instantly share code, notes, and snippets.

@yasen-yankov
Last active February 7, 2018 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yasen-yankov/becf25976289dc16b86d4e5ab3d8ac6c to your computer and use it in GitHub Desktop.
Save yasen-yankov/becf25976289dc16b86d4e5ab3d8ac6c to your computer and use it in GitHub Desktop.
Sitefinity Image Optimization
using System.Collections.Specialized;
using Telerik.Sitefinity.FileProcessors;
namespace Telerik.Sitefinity.ImageOptimization
{
public interface IInstallableFileProcessor : IFileProcessor
{
string ConfigName { get; }
string ConfigDescription { get; }
NameValueCollection ConfigParameters { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment