Files
components/LiteCharms.Features/Hasher/Configuration/HasherSettings.cs
T

11 lines
229 B
C#

namespace LiteCharms.Features.Hasher.Configuration;
public sealed class HasherSettings
{
public string? Salt { get; set; }
public int MinHashLength { get; set; }
public string? PayfastPassphrase { get; set; }
}