// Copyright (c) Umbraco. // See LICENSE for more details. namespace Umbraco.Cms.Core.Configuration.Models { /// /// Typed configuration options for tour settings. /// public class TourSettings { /// /// Gets or sets a value indicating whether back-office tours are enabled. /// public bool EnableTours { get; set; } = true; } }