namespace StardewModdingAPI.Mods.SaveBackup.Framework { /// The mod configuration. internal class ModConfig { /// The number of backups to keep. public int BackupsToKeep { get; set; } = 10; } }