mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 17:33:11 +08: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; }
|
|||
|
|
}
|
|||
|
|
}
|