mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
11 lines
197 B
C#
11 lines
197 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class UserKdfInformation
|
|
{
|
|
public KdfType Kdf { get; set; }
|
|
public int KdfIterations { get; set; }
|
|
}
|
|
}
|