Files
App/OwnChar.App.Desktop/Settings/JsonFileLoginProviderSettings.cs
2024-06-10 21:13:59 +02:00

16 lines
350 B
C#

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;
}
}