1
0
mirror of https://github.com/bitwarden/server synced 2025-12-13 23:03:36 +00:00
Files
server/src/Core/Models/Data/UserKdfInformation.cs
2018-08-14 15:30:04 -04:00

12 lines
211 B
C#

using System;
using Bit.Core.Enums;
namespace Bit.Core.Models.Data
{
public class UserKdfInformation
{
public KdfType Kdf { get; set; }
public int KdfIterations { get; set; }
}
}