namespace StardewModdingAPI.Web.Framework.ConfigModels
{
    /// <summary>The config settings for background services.</summary>
    internal class BackgroundServicesConfig
    {
        /*********
        ** Accessors
        *********/
        /// <summary>Whether to enable background update services.</summary>
        public bool Enabled { get; set; }
    }
}