mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-27 04:25:39 -05:00
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
13 lines
413 B
C#
13 lines
413 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class ReportGridSettings
|
|
{
|
|
[LocalizedDescription("Extra entity properties to try and show in addition to the default properties displayed.")]
|
|
public List<string> ExtraProperties { get; set; } = [];
|
|
|
|
[LocalizedDescription("Properties to hide from the report grid.")]
|
|
public List<string> HiddenProperties { get; set; } = [];
|
|
}
|