Last active
February 7, 2018 17:04
-
-
Save yasen-yankov/becf25976289dc16b86d4e5ab3d8ac6c to your computer and use it in GitHub Desktop.
Sitefinity Image Optimization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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