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