16 lines
350 B
C#
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;
|
|
}
|
|
}
|