Files
server/src/Core/Models/Data/UserKdfInformation.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
175 B
C#
Raw Normal View History

using Bit.Core.Enums;
namespace Bit.Core.Models.Data;
2022-08-29 14:53:16 -04:00
public class UserKdfInformation
{
public KdfType Kdf { get; set; }
public int KdfIterations { get; set; }
}