11 lines
302 B
C#
11 lines
302 B
C#
namespace Umbraco.Core
|
|
{
|
|
public interface IBackOfficeInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets the absolute url to the Umbraco Backoffice. This info can be used to build absolute urls for Backoffice to use in mails etc.
|
|
/// </summary>
|
|
string GetAbsoluteUrl { get; }
|
|
}
|
|
}
|