15 lines
255 B
C#
15 lines
255 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace umbraco.presentation.ClientDependency
|
|
{
|
|
/// <summary>
|
|
/// The type of client file
|
|
/// </summary>
|
|
public enum ClientDependencyType
|
|
{
|
|
Javascript, Css
|
|
}
|
|
}
|