Files
Umbraco-CMS/umbraco/presentation.ClientDependency/IClientDependencyFile.cs
Shandem f38d2a15db DO NOT DOWNLOAD. DOWNLOAD LATEST STABLE FROM RELEASE TAB
Merged new tree & ClientDependency changes to 4.1 branch

[TFS Changeset #55087]
2009-06-19 09:32:18 +00:00

17 lines
441 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; }
}
}