Files
Filtration/Filtration/ViewModels/DesignTime/DesignTimeSettingsPageViewModel.cs
Ben Wallis c6d75cfff6 Implemented auto-update using Squirrel
Reworked SettingsPageView to not need a Save Button and added a folder browser control
2018-09-26 18:40:54 +01:00

24 lines
585 B
C#

using GalaSoft.MvvmLight.CommandWpf;
namespace Filtration.ViewModels.DesignTime
{
public class DesignTimeSettingsPageViewModel : ISettingsPageViewModel
{
public RelayCommand SetItemFilterScriptDirectoryCommand { get; }
public string DefaultFilterDirectory
{
get => @"c:\users\longusernamehere\Documents\My Games\Path of Exile";
set { }
}
public bool ExtraLineBetweenBlocks
{
get => true;
set { }
}
public bool DownloadPrereleaseUpdates { get; set; }
}
}