Flow.Launcher/Plugins/Flow.Launcher.Plugin.Calculator/Settings.cs
2024-05-25 14:35:14 +08:00

9 lines
249 B
C#

namespace Flow.Launcher.Plugin.Calculator
{
public class Settings
{
public DecimalSeparator DecimalSeparator { get; set; } = DecimalSeparator.UseSystemLocale;
public int MaxDecimalPlaces { get; set; } = 10;
}
}