mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-08-07 04:42:17 -04:00
Remove useless interface
This commit is contained in:
1 parent
7569b01bd0
commit
b29ec26f63
9 files changed
+6
-18
No files matched your search
@@ -8,7 +8,7 @@ using System.Linq;
|
||||
|
||||
namespace LibationAvalonia.ViewModels.Settings
|
||||
{
|
||||
public class AudioSettingsVM : ViewModelBase, ISettingsDisplay
|
||||
public class AudioSettingsVM : ViewModelBase
|
||||
{
|
||||
private bool _downloadClipsBookmarks;
|
||||
private bool _decryptToLossy;
|
||||
|
||||
@@ -5,7 +5,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace LibationAvalonia.ViewModels.Settings
|
||||
{
|
||||
public class DownloadDecryptSettingsVM : ViewModelBase, ISettingsDisplay
|
||||
public class DownloadDecryptSettingsVM : ViewModelBase
|
||||
{
|
||||
private string _folderTemplate;
|
||||
private string _fileTemplate;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace LibationAvalonia.ViewModels.Settings
|
||||
{
|
||||
public class ImportSettingsVM : ISettingsDisplay
|
||||
public class ImportSettingsVM
|
||||
{
|
||||
public ImportSettingsVM(Configuration config)
|
||||
{
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
using Avalonia.Controls.Shapes;
|
||||
using FileManager;
|
||||
using FileManager;
|
||||
using LibationFileManager;
|
||||
using ReactiveUI;
|
||||
using System;
|
||||
@@ -7,7 +6,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace LibationAvalonia.ViewModels.Settings
|
||||
{
|
||||
public class ImportantSettingsVM : ViewModelBase, ISettingsDisplay
|
||||
public class ImportantSettingsVM : ViewModelBase
|
||||
{
|
||||
private string themeVariant;
|
||||
private string initialThemeVariant;
|
||||
|
||||
@@ -2,13 +2,7 @@
|
||||
|
||||
namespace LibationAvalonia.ViewModels.Settings
|
||||
{
|
||||
internal interface ISettingsDisplay
|
||||
{
|
||||
void LoadSettings(Configuration config);
|
||||
void SaveSettings(Configuration config);
|
||||
}
|
||||
|
||||
public class SettingsVM : ISettingsDisplay
|
||||
public class SettingsVM
|
||||
{
|
||||
public SettingsVM(Configuration config)
|
||||
{
|
||||
|
||||
Reference in new issue
Block a user