Skip to content

Commit d85ee43

Browse files
authored
Add ProfileType property to IHashConfigProfile
Updated IHashConfigProfile interface to include ProfileType property. Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 69a04cc commit d85ee43

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

HashifyNet/Core/Config/IHashConfigProfile.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// *
1+
// *
22
// *****************************************************************************
33
// *
44
// * Copyright (c) 2025 Deskasoft International
@@ -27,13 +27,20 @@
2727
// ******************************************************************************
2828
// *
2929

30+
using System;
31+
3032
namespace HashifyNet
3133
{
3234
/// <summary>
3335
/// Represents a configuration profile for a hash algorithm.
3436
/// </summary>
3537
public interface IHashConfigProfile
3638
{
39+
/// <summary>
40+
/// Gets the type of the config profile's class.
41+
/// </summary>
42+
Type ProfileType { get; }
43+
3744
/// <summary>
3845
/// Gets the name of the underlying config profile.
3946
/// </summary>

0 commit comments

Comments
 (0)