12 lines
246 B
C#
12 lines
246 B
C#
|
|
namespace Umbraco.Core.Hosting
|
||
|
|
{
|
||
|
|
public interface IHostingEnvironment
|
||
|
|
{
|
||
|
|
string SiteName { get; }
|
||
|
|
string ApplicationId { get; }
|
||
|
|
string ApplicationPhysicalPath { get; }
|
||
|
|
|
||
|
|
string LocalTempPath { get; }
|
||
|
|
}
|
||
|
|
}
|