2025-09-27 16:18:33 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin.Calculator;
|
2025-09-15 05:02:42 +00:00
|
|
|
|
|
|
|
|
|
|
public class Settings
|
2020-03-31 11:00:09 +00:00
|
|
|
|
{
|
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;
|
2026-01-10 06:30:57 +00:00
|
|
|
|
|
|
|
|
|
|
public bool UseThousandsSeparator { get; set; } = true;
|
2020-03-31 11:00:09 +00:00
|
|
|
|
}
|