2023-04-25 12:04:08 +00:00
|
|
|
|
using System.Collections.Generic;
|
2020-03-31 11:00:09 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
2020-04-21 09:12:17 +00:00
|
|
|
|
namespace Flow.Launcher.Plugin.Caculator.ViewModels
|
2020-03-31 11:00:09 +00:00
|
|
|
|
{
|
2021-05-11 16:37:28 +00:00
|
|
|
|
public class SettingsViewModel : BaseModel
|
2020-03-31 11:00:09 +00:00
|
|
|
|
{
|
2021-05-12 11:38:29 +00:00
|
|
|
|
public SettingsViewModel(Settings settings)
|
2020-03-31 11:00:09 +00:00
|
|
|
|
{
|
2021-05-12 11:38:29 +00:00
|
|
|
|
Settings = settings;
|
2020-03-31 11:00:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-12 11:38:29 +00:00
|
|
|
|
public Settings Settings { get; init; }
|
2020-03-31 11:00:09 +00:00
|
|
|
|
|
|
|
|
|
|
public IEnumerable<int> MaxDecimalPlacesRange => Enumerable.Range(1, 20);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|