// Copyright (c) Umbraco. // See LICENSE for more details. using System.ComponentModel; namespace Umbraco.Cms.Core.Configuration.Models; /// /// Typed configuration options for tour settings. /// [UmbracoOptions(Constants.Configuration.ConfigTours)] public class TourSettings { internal const bool StaticEnableTours = true; /// /// Gets or sets a value indicating whether back-office tours are enabled. /// [DefaultValue(StaticEnableTours)] public bool EnableTours { get; set; } = StaticEnableTours; }