// Copyright (c) Umbraco. // See LICENSE for more details. using System.ComponentModel; namespace Umbraco.Cms.Core.Configuration.Models { /// /// Typed configuration options for content notification settings. /// public class ContentNotificationSettings { internal const bool StaticDisableHtmlEmail = false; /// /// Gets or sets a value for the email address for notifications. /// public string? Email { get; set; } /// /// Gets or sets a value indicating whether HTML email notifications should be disabled. /// [DefaultValue(StaticDisableHtmlEmail)] public bool DisableHtmlEmail { get; set; } = StaticDisableHtmlEmail; } }