2009-06-19 07:39:16 +00:00
|
|
|
|
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; }
|
2009-07-07 14:27:03 +00:00
|
|
|
|
//string CompositeGroupName { get; set; }
|
2009-06-19 09:32:18 +00:00
|
|
|
|
string PathNameAlias { get; set; }
|
2009-06-19 07:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|