mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-07 00:59:58 +01:00
15 lines
456 B
C#
15 lines
456 B
C#
using System.ComponentModel;
|
|
using System.Configuration;
|
|
|
|
namespace SteamController.ProfilesSettings
|
|
{
|
|
internal class DesktopPanelSettings : BackPanelSettings
|
|
{
|
|
public static DesktopPanelSettings Default { get; } = (DesktopPanelSettings)ApplicationSettingsBase.Synchronized(
|
|
new DesktopPanelSettings("DesktopPanelSettings"));
|
|
|
|
public DesktopPanelSettings(String settingsKey) : base(settingsKey)
|
|
{
|
|
}
|
|
}
|
|
} |