blob: de871c9a5540cc795358beb7a34e7761970e46d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
}
|