mirror of
https://github.com/bitwarden/server
synced 2025-12-13 23:03:36 +00:00
12 lines
211 B
C#
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; }
|
|
}
|
|
}
|