Files

10 lines
229 B
C#

namespace PostFundManagement.Domain.Configuration.Hash;
public sealed class HasherSettings
{
public string? Salt { get; set; }
public int MinHashLength { get; set; }
public string? PayfastPassphrase { get; set; }
}