6 lines
145 B
C#
6 lines
145 B
C#
|
|
namespace TimetableDesigner.Backend.Services.Authentication.Core.Helpers;
|
|||
|
|
|
|||
|
|
public record PasswordHashData(
|
|||
|
|
byte[] Hash,
|
|||
|
|
string Salt
|
|||
|
|
);
|