Files
Umbraco-CMS/umbraco/presentation.ClientDependency/IClientDependencyFile.cs
Shandem 9a46338123 DO NOT DOWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB
Resolves 23626. ClientDependency work.

[TFS Changeset #57219]
2009-07-26 15:13:15 +00:00

17 lines
423 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 PathNameAlias { get; set; }
bool DoNotOptimize { get; set; }
}
}