Files
Umbraco-CMS/src/Umbraco.Core/IBackOfficeInfo.cs
2020-02-24 08:21:53 +01:00

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; }
}
}