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

16 lines
291 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace umbraco.presentation.ClientDependency
{
public interface IClientDependencyPath
{
string Name { get; set; }
string Path { get; set; }
string ResolvedPath { get; }
}
}