15 lines
248 B
C#
15 lines
248 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Nirvana.Common
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 路径提供程序
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IPathProvider
|
|||
|
|
{
|
|||
|
|
string MapPath(string path);
|
|||
|
|
}
|
|||
|
|
}
|