This commit is contained in:
2024-06-10 21:13:59 +02:00
parent 46ecd56640
commit 7f95130834
15 changed files with 330 additions and 96 deletions

View File

@@ -0,0 +1,15 @@
using Pilz.Configuration;
namespace OwnChar.App.Desktop.Settings;
internal class JsonFileLoginProviderSettings : IChildSettings, ISettingsIdentifier
{
public static string Identifier => "ownchar.login.providers.jsonfile";
public string? RecentFilePath { get; set; }
public void Reset()
{
RecentFilePath = null;
}
}