Files
Umbraco-CMS/umbraco/presentation.ClientDependency/ClientDependencyType.cs

15 lines
255 B
C#
Raw Normal View History

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
}
}