1 2 3 4 5 6 7 8 9
namespace StardewModdingAPI.Mods.SaveBackup.Framework { /// <summary>The mod configuration.</summary> internal class ModConfig { /// <summary>The number of backups to keep.</summary> public int BackupsToKeep { get; set; } = 10; } }