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

13 lines
339 B
C#
Raw Permalink Normal View History

namespace Flow.Launcher.Plugin.Calculator;
2025-09-15 05:02:42 +00:00
public class Settings
{
2025-09-15 05:02:42 +00:00
public DecimalSeparator DecimalSeparator { get; set; } = DecimalSeparator.UseSystemLocale;
2025-09-15 04:57:25 +00:00
2025-09-15 05:02:42 +00:00
public int MaxDecimalPlaces { get; set; } = 10;
2025-09-15 04:57:25 +00:00
2025-09-15 05:02:42 +00:00
public bool ShowErrorMessage { get; set; } = false;
public bool UseThousandsSeparator { get; set; } = true;
}