More ClientDependency work...converting script and link tags slowly, debug is now off so compression is working. [TFS Changeset #56602]
18 lines
474 B
C#
18 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace umbraco.presentation.ClientDependency
|
|
{
|
|
public interface IClientDependencyFile
|
|
{
|
|
string FilePath { get; set; }
|
|
ClientDependencyType DependencyType { get; }
|
|
string InvokeJavascriptMethodOnLoad { get; set; }
|
|
int Priority { get; set; }
|
|
//string CompositeGroupName { get; set; }
|
|
string PathNameAlias { get; set; }
|
|
bool DoNotOptimize { get; set; }
|
|
}
|
|
}
|