Flow.Launcher/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs
2025-10-14 13:49:29 +03:00

10 lines
278 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;
}