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