11 lines
402 B
C#
11 lines
402 B
C#
using Umbraco.Core.Configuration.UmbracoSettings;
|
|
|
|
namespace Umbraco.Configuration.Implementations
|
|
{
|
|
internal class KeepAliveSettings : ConfigurationManagerConfigBase, IKeepAliveSettings
|
|
{
|
|
public bool DisableKeepAliveTask => UmbracoSettingsSection.KeepAlive.DisableKeepAliveTask;
|
|
public string KeepAlivePingUrl => UmbracoSettingsSection.KeepAlive.KeepAlivePingUrl;
|
|
}
|
|
}
|