diff --git a/VECTO3GUI2020/ViewModel/Interfaces/ISettingsViewModel.cs b/VECTO3GUI2020/ViewModel/Interfaces/ISettingsViewModel.cs index 9718b18a22335ac7e4407e69e3f80fe0db8532e7..326fdcef515188cebfc385168672ed1a520692c6 100644 --- a/VECTO3GUI2020/ViewModel/Interfaces/ISettingsViewModel.cs +++ b/VECTO3GUI2020/ViewModel/Interfaces/ISettingsViewModel.cs @@ -2,8 +2,12 @@ { public interface ISettingsViewModel : IMainViewModel { - - - - } + string DefaultFilePath { get; set; } + string DefaultOutputPath { get; set; } + bool SerializeVectoRunData { get; set; } + bool ActualModalData { get; set; } + bool Validate { get; set; } + bool ModalResults1Hz { get; set; } + bool WriteModalResults { get; set; } + } }