16 lines
291 B
C#
16 lines
291 B
C#
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; }
|
|
}
|
|
}
|