Flow.Launcher/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs
copilot-swe-agent[bot] 649b142b46 Add UseThousandsSeparator setting to Calculator plugin
Co-authored-by: Jack251970 <53996452+Jack251970@users.noreply.github.com>
2026-01-10 06:30:57 +00:00

12 lines
339 B
C#

namespace Flow.Launcher.Plugin.Calculator;
public class Settings
{
public DecimalSeparator DecimalSeparator { get; set; } = DecimalSeparator.UseSystemLocale;
public int MaxDecimalPlaces { get; set; } = 10;
public bool ShowErrorMessage { get; set; } = false;
public bool UseThousandsSeparator { get; set; } = true;
}