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