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;
2022-08-29 14:53:16 -04:00
namespace Bit.Core.Models.Data;
public class UserKdfInformation
{
2022-08-29 14:53:16 -04:00
public KdfType Kdf { get; set; }
public int KdfIterations { get; set; }
}