Files
Umbraco-CMS/umbraco/presentation.ClientDependency/IClientDependencyFile.cs
Shandem a0e3589502 DO NOT DOWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB
ClientDependency fixes and implementation. Tagged some files for removal.

[TFS Changeset #56112]
2009-07-07 14:27:03 +00:00

17 lines
443 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; set; }
string InvokeJavascriptMethodOnLoad { get; set; }
int Priority { get; set; }
//string CompositeGroupName { get; set; }
string PathNameAlias { get; set; }
}
}