PKHeX/PKHeX.WinForms/Settings/SlotExportSettings.cs
Kurt 93a381bfde Startup: load config before Main ctor
Allows specifying Dark mode in settings now.
Extracts reusable settings objects to PKHeX.Core (drawing/GUI stuff kept in WinForms).
Updating settings now refreshes backup paths/mgdb
2025-08-13 20:59:46 -05:00

16 lines
575 B
C#

using PKHeX.Core;
namespace PKHeX.WinForms;
public sealed class SlotExportSettings
{
[LocalizedDescription("Settings to use for box exports.")]
public BoxExportSettings BoxExport { get; set; } = new();
[LocalizedDescription("Selected File namer to use for box exports for the GUI, if multiple are available.")]
public string DefaultBoxExportNamer { get; set; } = "";
[LocalizedDescription("Allow drag and drop of boxdata binary files from the GUI via the Box tab.")]
public bool AllowBoxDataDrop { get; set; } // default to false, clunky to use
}