mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
14 lines
356 B
C#
14 lines
356 B
C#
using System.ComponentModel;
|
|
using System.Configuration;
|
|
|
|
namespace SteamController.ProfilesSettings
|
|
{
|
|
internal class DesktopPanelSettings : BackPanelSettings
|
|
{
|
|
public static DesktopPanelSettings Default { get; } = new DesktopPanelSettings();
|
|
|
|
public DesktopPanelSettings() : base("DesktopPanelSettings")
|
|
{
|
|
}
|
|
}
|
|
} |