1e21e33ade
Move SecureStoreManager project and tests to Deprecated folder and remove from solution. SecureStore functionality is now integrated into ConfigManager.
22 lines
692 B
C#
22 lines
692 B
C#
namespace JdeScoping.SecureStoreManager.Constants;
|
|
|
|
/// <summary>
|
|
/// Centralized constants for file extensions and patterns used in file dialogs.
|
|
/// </summary>
|
|
public static class FileExtensions
|
|
{
|
|
// SecureStore files
|
|
public const string StorePattern = "*.json";
|
|
public const string StoreExtension = ".json";
|
|
public const string StoreTypeName = "SecureStore Files";
|
|
|
|
// Key files
|
|
public const string KeyPattern = "*.key";
|
|
public const string KeyExtension = ".key";
|
|
public const string KeyTypeName = "Key Files";
|
|
|
|
// All files
|
|
public const string AllFilesPattern = "*.*";
|
|
public const string AllFilesTypeName = "All Files";
|
|
}
|