17 lines
440 B
C#
17 lines
440 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Core.Assets
|
|
{
|
|
public interface IAssetFile
|
|
{
|
|
string FilePath { get; set; }
|
|
AssetType DependencyType { get; }
|
|
int Priority { get; set; }
|
|
int Group { get; set; }
|
|
string PathNameAlias { get; set; }
|
|
string ForceProvider { get; set; }
|
|
string Bundle { get; }
|
|
IDictionary<string, string> HtmlAttributes { get; }
|
|
}
|
|
}
|