Flow.Launcher/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs

13 lines
339 B
C#
Raw Permalink Normal View History

2025-10-14 10:49:29 +00:00
namespace Flow.Launcher.Plugin.Calculator;
2025-09-21 12:23:00 +00:00
public class Settings
{
2025-09-21 12:23:00 +00:00
public DecimalSeparator DecimalSeparator { get; set; } = DecimalSeparator.UseSystemLocale;
public int MaxDecimalPlaces { get; set; } = 10;
public bool ShowErrorMessage { get; set; } = false;
2026-02-24 11:52:23 +00:00
public bool UseThousandsSeparator { get; set; } = true;
}