fix: give json storage file default name

This commit is contained in:
Stevan Freeborn
2026-04-02 13:52:28 -05:00
parent f59bbb3cac
commit 6c00cef1f7
@@ -8,7 +8,7 @@ public sealed class JsonStorageOptions
/// <summary>
/// Gets or sets the name of the JSON file used for storage.
/// </summary>
public string FileName { get; set; } = string.Empty;
public string FileName { get; set; } = "secure_config.json";
/// <summary>
/// Gets or sets the directory path where the JSON file is located. Defaults to the base directory of the application.