We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a04cc commit d85ee43Copy full SHA for d85ee43
HashifyNet/Core/Config/IHashConfigProfile.cs
@@ -1,4 +1,4 @@
1
-// *
+// *
2
// *****************************************************************************
3
// *
4
// * Copyright (c) 2025 Deskasoft International
@@ -27,13 +27,20 @@
27
// ******************************************************************************
28
29
30
+using System;
31
+
32
namespace HashifyNet
33
{
34
/// <summary>
35
/// Represents a configuration profile for a hash algorithm.
36
/// </summary>
37
public interface IHashConfigProfile
38
39
+ /// <summary>
40
+ /// Gets the type of the config profile's class.
41
+ /// </summary>
42
+ Type ProfileType { get; }
43
44
45
/// Gets the name of the underlying config profile.
46
0 commit comments