Flow.Launcher/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs
2025-09-15 13:02:42 +08:00

11 lines
279 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;
}