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

11 lines
278 B
C#
Raw 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;
}