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

10 lines
249 B
C#
Raw Normal View History


2024-05-25 06:35:14 +00:00
namespace Flow.Launcher.Plugin.Calculator
{
public class Settings
{
public DecimalSeparator DecimalSeparator { get; set; } = DecimalSeparator.UseSystemLocale;
public int MaxDecimalPlaces { get; set; } = 10;
}
}