1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-22 05:25:10 -05:00
bitwarden/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; }
}
}