VPR-Projekt/PenAndPaperManager/Controller/SettingsController.cs

34 lines
747 B
C#

using Models;
using Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Controller
{
public class SettingsController
{
private ConfigurationService configurationService;
private IUserPreferencesService userPreferencesService;
public UserPreferences GetUserPreferences()
{
return null;
}
public bool SaveUserPreferences(UserPreferences preferences)
{
return false;
}
public List<Theme> GetAvailableThemes()
{
return null;
}
public bool ApplyTheme(string themeName)
{
return false;
}
}
}